11 lines
371 B
C#
11 lines
371 B
C#
using NetinaCMS.Domain.Enums;
|
|
|
|
namespace NetinaCMS.Domain.Entities.StorageFiles;
|
|
|
|
public partial class StorageFile
|
|
{
|
|
public static StorageFile Create(string name, string fileLocation, string fileName, bool isHeader, bool isPrimary, StorageFileType fileType)
|
|
{
|
|
return new StorageFile(name, fileLocation, fileName, isHeader, isPrimary, fileType);
|
|
}
|
|
} |