1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Common
- {
- public class EnumModel
- {
- public string Key { get; set; }
- public int Value { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
-
- public string Other { get; set; }
- }
- }
|