PrinterDrives.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Flyinsono.DBCopy.Tool.Entities
  7. {
  8. internal class PrinterDrives
  9. {
  10. public string Id { get; private set; }
  11. public DateTime CreateTime { get; private set; }
  12. public DateTime UpdateTime { get; set; }
  13. public bool IsDeleted { get; set; }
  14. /// <summary>
  15. /// Gets or sets the printer drive name.
  16. /// </summary>
  17. public string Name { get; set; }
  18. /// <summary>
  19. /// Gets or sets the printer drive file token.
  20. /// </summary>
  21. public string FileToken { get; set; }
  22. /// <summary>
  23. /// Gets or sets the printer drive file size.
  24. /// </summary>
  25. public int Size { get; set; }
  26. /// <summary>
  27. /// Gets or sets the manufacturer.
  28. /// </summary>
  29. public string Manufacturer { get; set; }
  30. /// <summary>
  31. /// Gets or sets the drive version.
  32. /// </summary>
  33. public string Version { get; set; }
  34. /// <summary>
  35. /// Gets or sets the supported printer models
  36. /// </summary>
  37. public IList<string> SupportedPrinterModels { get; set; }
  38. /// <summary>
  39. /// Gets or sets the supported platform, such as win7,win10.
  40. /// </summary>
  41. public string SupportedPlatform { get; set; }
  42. }
  43. }