BlueUserConfig.cs 387 B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. public class BLueUserListConfig
  3. {
  4. public List<BlueUserConfig> BlueUserListConfig{ get; set; }
  5. }
  6. public class BlueUserConfig
  7. {
  8. public string BlueUserType{ get; set; }
  9. public bool Auto{ get; set; }
  10. public bool ERNIEBot{ get; set; }
  11. }
  12. public enum BlueUserType
  13. {
  14. DefaultUser,
  15. Blue,
  16. WenChuang,
  17. NingYuan,
  18. YangPuDangJian
  19. }