UploadPicSet.cs 767 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MES.Production.Entity.Model
  7. {
  8. public class UploadPicSet
  9. {
  10. public string unid
  11. {
  12. get;set;
  13. }
  14. /// <summary>
  15. ///
  16. /// </summary>
  17. public int total
  18. { get; set; }
  19. public int status
  20. { get; set; }
  21. public string fileTypeExts
  22. {
  23. get;set;
  24. }
  25. /// <summary>
  26. ///
  27. /// </summary>
  28. public string fileSizeLimit
  29. {
  30. get;set;
  31. }
  32. /// <summary>
  33. ///
  34. /// </summary>
  35. public string html
  36. {
  37. get;set;
  38. }
  39. }
  40. }