📄 fileinfo.cs
字号:
namespace PowerEasy.Model.Accessories
{
using PowerEasy.Model;
using System;
public class FileInfo : PowerEasy.Model.Nullable
{
private int m_Id;
private bool m_IsThumb;
private string m_Name;
private string m_Path;
private int m_Quote;
private int m_Size;
public FileInfo()
{
}
public FileInfo(bool value)
{
base.IsNull = value;
}
public int Id
{
get
{
return this.m_Id;
}
set
{
this.m_Id = value;
}
}
public bool IsThumb
{
get
{
return this.m_IsThumb;
}
set
{
this.m_IsThumb = value;
}
}
public string Name
{
get
{
return this.m_Name;
}
set
{
this.m_Name = value;
}
}
public string Path
{
get
{
return this.m_Path;
}
set
{
this.m_Path = value;
}
}
public int Quote
{
get
{
return this.m_Quote;
}
set
{
this.m_Quote = value;
}
}
public int Size
{
get
{
return this.m_Size;
}
set
{
this.m_Size = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -