📄 webproviders.cs
字号:
using System;
namespace Club.Framework.Providers
{
/// <summary>
/// Summary description for BlogProviders.
/// </summary>
[Serializable]
public class WebProviders
{
public WebProviders()
{
}
private EmailProviderConfiguration _emailProvider;
public EmailProviderConfiguration EmailProvider
{
get {return this._emailProvider;}
set {this._emailProvider = value;}
}
private DTOProviderConfiguration _dTOProvider;
public DTOProviderConfiguration DTOProvider
{
get {return this._dTOProvider;}
set {this._dTOProvider = value;}
}
private DbProviderConfiguration _dbProvider;
public DbProviderConfiguration DbProvider
{
get {return this._dbProvider;}
set {this._dbProvider = value;}
}
private UrlFormatProviderConfiguration _urlFormatProvider;
public UrlFormatProviderConfiguration UrlFormatProvider
{
get {return this._urlFormatProvider;}
set {this._urlFormatProvider = value;}
}
private JsFormatProviderConfiguration _jsFormatProvider;
public JsFormatProviderConfiguration JsFormatProvider
{
get {return this._jsFormatProvider;}
set {this._jsFormatProvider = value;}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -