using System; using Volo.Abp.Application.Dtos; namespace Procurement.FileManagement.Dto { public class FileInfoDto : EntityDto { public string Name { get; set; } public string RealName { get; set; } public string Suffix { get; set; } public string Size { get; set; } public string Url { get; set; } public int Type { get; set; } public DateTime CreationTime { get; set; } } }