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;

    }


}