CardType.cs 189 B

123456789101112
  1. using System.ComponentModel;
  2. namespace CardApi
  3. {
  4. public enum CardType
  5. {
  6. [Description("类型1")]
  7. TYPE_1,
  8. [Description("类型2")]
  9. TYPE_2
  10. }
  11. }