You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
514 B
27 lines
514 B
/*
|
|
Sog 游戏基础库
|
|
2016 by zouwei
|
|
*/
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
public class DBServerConfig
|
|
{
|
|
public string dbname;
|
|
|
|
public string dbip;
|
|
|
|
public string dbuser;
|
|
|
|
public string dbpassword;
|
|
|
|
public int dbtype; //0是mysql 1mongodb
|
|
|
|
public int gmReplaceAccountType; //测试外网账号数据用,方便登录查看外网数据
|
|
|
|
// 如果使用redis db复制集, 配置为"ip1:port1;ip2:port2;ip3:port3"
|
|
public string redisDBReplicaSet;
|
|
}
|
|
}
|
|
|