📄 personalgroupcategory.cs
字号:
namespace Imps.Client.Core
{
using System;
using System.Collections.Generic;
public class PersonalGroupCategory
{
private Dictionary<Category, List<Category>> _categorys = new Dictionary<Category, List<Category>>();
private string _version = string.Empty;
public Dictionary<Category, List<Category>> Categorys
{
get
{
return this._categorys;
}
}
internal string Version
{
get
{
return this._version;
}
set
{
this._version = value;
}
}
public class Category
{
private string _id;
private string _name;
private PersonalGroupCategory.Category _parent;
public string Id
{
get
{
return this._id;
}
set
{
this._id = value;
}
}
public string Name
{
get
{
return this._name;
}
set
{
this._name = value;
}
}
public PersonalGroupCategory.Category Parent
{
get
{
return this._parent;
}
set
{
this._parent = value;
}
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -