using System; namespace IRaCIS.Application.ViewModels { public class UploadFileInfoDTO { public Guid Id { get; set; } public string FilePath { get; set; } public string FullFilePath => WebAppConfig.RootUrl + FilePath; } }