BaseConfig.cs 645 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.WanYuKeFuData.Model
  6. {
  7. public class BaseConfig
  8. {
  9. public BaseConfig() {
  10. }
  11. string _ServerIP = "127.0.0.1";
  12. /// <summary>
  13. /// 服务器IP
  14. /// </summary>
  15. public string ServerIP
  16. {
  17. get { return _ServerIP; }
  18. set { _ServerIP = value; }
  19. }
  20. ushort _Port = 0;
  21. /// <summary>
  22. /// 端口号
  23. /// </summary>
  24. public ushort Port
  25. {
  26. get { return _Port; }
  27. set { _Port = value; }
  28. }
  29. }
  30. }