You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

45 lines
1.0 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. namespace Permission.Service.DTO.ApiModels
  4. {
  5. public class NetDiskFile
  6. {
  7. public NetDiskFile()
  8. {
  9. ChildFiles = new List<NetDiskFile>();
  10. }
  11. public string FileId { get; set; }
  12. public string Name { get; set; }
  13. public string ParentId { get; set; }
  14. //0为文件夹 1为文件
  15. public int FileType { get; set; }
  16. public int? TotalBytes { get; set; }
  17. public string DownloadPath { get; set; }
  18. public DateTime ModifiedTime { get; set; }
  19. public IEnumerable<NetDiskFile> ChildFiles { get; set; }
  20. }
  21. public class BaseFile
  22. {
  23. public string FileId { get; set; }
  24. public string Name { get; set; }
  25. public string ParentId { get; set; }
  26. //0为文件夹 1为文件
  27. public int FileType { get; set; }
  28. public int? TotalBytes { get; set; }
  29. public string DownloadPath { get; set; }
  30. public DateTime ModifiedTime { get; set; }
  31. }
  32. }