using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DH.RBAC.Common
{
public class MyConfig
{
public int EveryPageDataCount { get; set; }
///
/// 数据库类型
///
public string DbType { get; set; }
///
/// 数据库主机IP
///
public string DbHost { get; set; }
///
/// 数据库名
///
public string DbName { get; set; }
///
/// 数据库用户名
///
public string DbUserName { get; set; }
///
/// 数据库密码
///
public string DbPassword { get; set; }
private bool _debug = false;
///
/// 是否调试模式,调试模式将会输出日志
///
public bool Debug { get { return _debug; } set { _debug = value; } }
}
}