EI-Image-Viewer-Api/IRaCIS.Core.Application/Service/Common/DTO/FileModel.cs

18 lines
343 B
C#

namespace IRaCIS.Application.Contracts
{
public class UploadFileInfoDTO
{
public Guid Id { get; set; }
public string FilePath { get; set; } = string.Empty;
//[JsonIgnore]
//public string FullFilePathNoToken => FilePath;
public string FullFilePath { get; set; } = string.Empty;
}
}