📄 freelabelinfo.cs
字号:
//======================================================
//== (c)2008 aspxcms inc by NeTCMS v1.0 ==
//== Forum:bbs.aspxcms.com ==
//== Website:www.aspxcms.com ==
//======================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace NetCMS.Model
{
public class FreeLabelInfo
{
private int _Id;
private string _LabelName;
private string _LabelSQL;
private string _StyleContent;
private string _Description;
private string _SiteID;
public FreeLabelInfo(int id, string lblname, string lblsql, string stycontent, string description)
{
_Id = id;
_LabelName = lblname;
_LabelSQL = lblsql;
_StyleContent = stycontent;
_Description = description;
}
public int Id
{
get { return _Id; }
}
public string LabelName
{
get { return _LabelName; }
}
public string LabelSQL
{
get { return _LabelSQL; }
}
public string StyleContent
{
get { return _StyleContent; }
}
public string Description
{
get { return _Description; }
}
public string SiteID
{
get { return _SiteID; }
set { _SiteID = value; }
}
}
public class FreeLablelDBInfo
{
private string _name;
private string _description;
private string _dbtype;
public FreeLablelDBInfo(string SName, string SDesc,string STypeName)
{
_name = SName;
_description = SDesc;
_dbtype = STypeName;
}
public string Name
{
get { return _name; }
}
public string Description
{
get { return _description; }
}
public string TypeName
{
get { return _dbtype; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -