You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
598 B
C#
31 lines
598 B
C#
|
|
|
|
namespace Estsh.Core.Config
|
|
{
|
|
public class GlobalConfig
|
|
{
|
|
/// <summary>
|
|
/// 数据库配置
|
|
/// </summary>
|
|
public static DbConfig DbConfig { get; set; }
|
|
|
|
/// <summary>
|
|
/// 皮肤配置
|
|
/// </summary>
|
|
public static SkinConfig SkinConfig { get; set; }
|
|
|
|
/// <summary>
|
|
/// JWT配置
|
|
/// </summary>
|
|
public static JwtConfig JwtConfig { get; set; }
|
|
|
|
/// <summary>
|
|
/// Session配置
|
|
/// </summary>
|
|
public static SessionConfig SessionConfig { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|