webproviders.cs
来自「1、用SQL查询器打开install目录下的dooogo.sql运行之后创建数据」· CS 代码 · 共 50 行
CS
50 行
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 + =
减小字号Ctrl + -
显示快捷键?