123456789101112131415161718 |
- using Chloe.Annotations;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace WZExport.Models
- {
- [Table]
- public class Dictionary
- {
- public int Key { get; set; }
- public string KeyLable { get; set; }
- public string Value { get; set; }
- public int Type { get; set; }
- }
- }
|