KeyValuesInfo.cs 396 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace SUIFW
  6. {
  7. [Serializable]
  8. class KeyValuesInfo
  9. {
  10. //语言信息
  11. public List<KeyValuesNode> ConfigInfo = null;
  12. }
  13. [Serializable]
  14. class KeyValuesNode
  15. {
  16. //键
  17. public string Key = null;
  18. //值
  19. public string Value = null;
  20. }
  21. }