FileInfoDto.cs 460 B

12345678910111213141516171819202122
  1. using System;
  2. using Volo.Abp.Application.Dtos;
  3. namespace Procurement.FileManagement.Dto
  4. {
  5. public class FileInfoDto : EntityDto<Guid>
  6. {
  7. public string Name { get; set; }
  8. public string RealName { get; set; }
  9. public string Suffix { get; set; }
  10. public string Size { get; set; }
  11. public string Url { get; set; }
  12. public int Type { get; set; }
  13. public DateTime CreationTime { get; set; }
  14. }
  15. }