using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LYFZ.WanYuKeFuData.Model
{
public class BaseConfig
{
public BaseConfig() {
}
string _ServerIP = "127.0.0.1";
///
/// 服务器IP
///
public string ServerIP
{
get { return _ServerIP; }
set { _ServerIP = value; }
}
ushort _Port = 0;
///
/// 端口号
///
public ushort Port
{
get { return _Port; }
set { _Port = value; }
}
}
}