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