颐和api

FileClass.cs 805B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace FileServerApi.Common
  6. {
  7. public class FileClass
  8. {
  9. /// <summary>
  10. /// 文件类
  11. /// </summary>
  12. public class FileInfo
  13. {
  14. public string filename { set; get; }
  15. public string fileurl { set; get; }
  16. public string filesmallurl { set; get; }
  17. public string filesize { set; get; }
  18. public string fileext { set; get; }
  19. public string filemd5 { set; get; }
  20. }
  21. /// <summary>
  22. /// Base64类
  23. /// </summary>
  24. public class Base64Info
  25. {
  26. public string filename { set; get; }
  27. public string fileurl { set; get; }
  28. }
  29. }
  30. }