62,243
社区成员




public class EngineLabelManageInfo
{
// Fields
[CompilerGenerated]
private bool <EnableAjax>k__BackingField;
[CompilerGenerated]
private int <Id>k__BackingField;
[CompilerGenerated]
private bool <IsNull>k__BackingField;
[CompilerGenerated]
private DateTime <UpdateTime>k__BackingField;
private StringBuilder m_Define;
private string m_Intro;
private string m_Name;
private StringBuilder m_Template;
private string m_Type;
// Methods
public EngineLabelManageInfo()
{
this.m_Define = new StringBuilder();
this.m_Intro = string.Empty;
this.m_Name = string.Empty;
this.m_Template = new StringBuilder();
this.m_Type = string.Empty;
}
public EngineLabelManageInfo(bool value)
{
this.m_Define = new StringBuilder();
this.m_Intro = string.Empty;
this.m_Name = string.Empty;
this.m_Template = new StringBuilder();
this.m_Type = string.Empty;
this.IsNull = value;
}
public EngineLabelManageInfo(string name)
{
this.m_Define = new StringBuilder();
this.m_Intro = string.Empty;
this.m_Name = string.Empty;
this.m_Template = new StringBuilder();
this.m_Type = string.Empty;
this.m_Name = name;
}
public EngineLabelManageInfo(int id, string name, string type, string intro, DateTime updatetime, bool enabelajax, StringBuilder define, StringBuilder template)
{
this.m_Define = new StringBuilder();
this.m_Intro = string.Empty;
this.m_Name = string.Empty;
this.m_Template = new StringBuilder();
this.m_Type = string.Empty;
this.Id = id;
this.m_Name = name;
this.m_Type = type;
this.m_Define = define;
this.m_Template = template;
this.UpdateTime = updatetime;
this.m_Intro = intro;
this.EnableAjax = enabelajax;
}
// Properties
public StringBuilder Define
{
get
{
return this.m_Define;
}
set
{
this.m_Define = value;
}
}
public bool EnableAjax
{
[CompilerGenerated]
get
{
return this.<EnableAjax>k__BackingField;
}
[CompilerGenerated]
set
{
this.<EnableAjax>k__BackingField = value;
}
}
public int Id
{
[CompilerGenerated]
get
{
return this.<Id>k__BackingField;
}
[CompilerGenerated]
set
{
this.<Id>k__BackingField = value;
}
}
public string Intro
{
get
{
return this.m_Intro;
}
set
{
this.m_Intro = value;
}
}
[XmlIgnore]
public bool IsNull
{
[CompilerGenerated]
get
{
return this.<IsNull>k__BackingField;
}
protected [CompilerGenerated]
set
{
this.<IsNull>k__BackingField = value;
}
}
public string Name
{
get
{
return this.m_Name;
}
set
{
this.m_Name = value;
}
}
public StringBuilder Template
{
get
{
return this.m_Template;
}
set
{
this.m_Template = value;
}
}
public string Type
{
get
{
return this.m_Type;
}
set
{
this.m_Type = value;
}
}
public DateTime UpdateTime
{
[CompilerGenerated]
get
{
return this.<UpdateTime>k__BackingField;
}
[CompilerGenerated]
set
{
this.<UpdateTime>k__BackingField = value;
}
}
}