12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.CloudServerData.Model
- {
- public class BaseConfig
- {
- public BaseConfig() {
-
- }
- string _ServerIP = "127.0.0.1";
-
-
-
- public string ServerIP
- {
- get { return _ServerIP; }
- set { _ServerIP = value; }
- }
- ushort _Port = 0;
-
-
-
- public ushort Port
- {
- get { return _Port; }
- set { _Port = value; }
- }
- }
- }
|