2023-12-31 19:55:22 +03:30
|
|
|
|
namespace NetinaShop.Domain.Dtos.SmallDtos;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
public class StorageFileSDto : BaseDto<StorageFileSDto , StorageFile>
|
|
|
|
|
|
{
|
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|