Dictionary.cs 370 B

123456789101112131415161718
  1. using Chloe.Annotations;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace WZExport.Models
  7. {
  8. [Table]
  9. public class Dictionary
  10. {
  11. public int Key { get; set; }
  12. public string KeyLable { get; set; }
  13. public string Value { get; set; }
  14. public int Type { get; set; }
  15. }
  16. }