11 lines
449 B
C#
11 lines
449 B
C#
namespace NetinaShop.Domain.Entities.StorageFiles;
|
|
|
|
public class StorageFile : ApiEntity
|
|
{
|
|
public string Name { get; internal set; } = string.Empty;
|
|
public string FileLocation { get; internal set; } = string.Empty;
|
|
public string FileName { get; internal set; } = string.Empty;
|
|
public bool IsHeader { get; internal set; }
|
|
public bool IsPrimary { get; internal set; }
|
|
public StorageFileType FileType { get; internal set; }
|
|
} |