LabelSizeEnum.cs 428 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace XYY.Model.Standard
  8. {
  9. public enum LabelSizeEnum
  10. {
  11. [Description("10X10")]
  12. _10X10 = 1,
  13. [Description("10X15")]
  14. _10X15 = 2,
  15. [Description("15X10")]
  16. _15X10 = 3,
  17. [Description("10X18")]
  18. _10X18 = 4,
  19. }
  20. }