personalgroupcategory.cs
来自「破解的飞信源代码」· CS 代码 · 共 76 行
CS
76 行
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 + =
减小字号Ctrl + -
显示快捷键?