2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.Entities.StorageFiles;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|