123456789101112131415161718192021 |
- using System.Collections.Generic;
- public class BLueUserListConfig
- {
- public List<BlueUserConfig> BlueUserListConfig{ get; set; }
- }
- public class BlueUserConfig
- {
- public string BlueUserType{ get; set; }
- public bool Auto{ get; set; }
- public bool ERNIEBot{ get; set; }
- }
- public enum BlueUserType
- {
- DefaultUser,
- Blue,
- WenChuang,
- NingYuan,
- YangPuDangJian
- }
|