📄 specialtree.cs
字号:
namespace PowerEasy.Contents
{
using System;
public class SpecialTree
{
private int id;
private bool isSpecialCategory;
private string name;
private int treeLineType;
public int Id
{
get
{
return this.id;
}
set
{
this.id = value;
}
}
public bool IsSpecialCategory
{
get
{
return this.isSpecialCategory;
}
set
{
this.isSpecialCategory = value;
}
}
public string Name
{
get
{
return this.name;
}
set
{
this.name = value;
}
}
public int TreeLineType
{
get
{
return this.treeLineType;
}
set
{
this.treeLineType = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -