13 lines
523 B
C#
13 lines
523 B
C#
using NetinaShop.Domain.Entities.StorageFiles;
|
|
|
|
namespace NetinaShop.Domain.Dtos.SmallDtos;
|
|
|
|
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; }
|
|
} |