📄 includefileinfo.cs
字号:
namespace PowerEasy.Model.Templates
{
using PowerEasy.Enumerations;
using PowerEasy.Model;
using System;
public class IncludeFileInfo : PowerEasy.Model.Nullable
{
private PowerEasy.Enumerations.AssociateType m_AssociateType;
private string m_Description;
private string m_FileName;
private int m_Id;
private PowerEasy.Enumerations.IncludeType m_IncludeType;
private string m_Name;
private string m_Template;
public IncludeFileInfo()
{
}
public IncludeFileInfo(bool isNull)
{
base.IsNull = isNull;
}
public PowerEasy.Enumerations.AssociateType AssociateType
{
get
{
return this.m_AssociateType;
}
set
{
this.m_AssociateType = value;
}
}
public string Description
{
get
{
return this.m_Description;
}
set
{
this.m_Description = value;
}
}
public string FileName
{
get
{
return this.m_FileName;
}
set
{
this.m_FileName = value;
}
}
public int Id
{
get
{
return this.m_Id;
}
set
{
this.m_Id = value;
}
}
public PowerEasy.Enumerations.IncludeType IncludeType
{
get
{
return this.m_IncludeType;
}
set
{
this.m_IncludeType = value;
}
}
public string Name
{
get
{
return this.m_Name;
}
set
{
this.m_Name = value;
}
}
public string Template
{
get
{
return this.m_Template;
}
set
{
this.m_Template = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -