📄 personalgroupsearchresultview.cs
字号:
namespace Imps.Client.Core
{
using System;
public class PersonalGroupSearchResultView
{
private string _groupCategory;
private string _groupID;
private string _groupMemberCount;
private string _groupName;
private string _verifyMethod;
public string GroupCategory
{
get
{
return this._groupCategory;
}
set
{
this._groupCategory = value;
}
}
public string GroupID
{
get
{
return this._groupID;
}
set
{
this._groupID = value;
}
}
public string GroupMemberCount
{
get
{
return this._groupMemberCount;
}
set
{
this._groupMemberCount = value;
}
}
public string GroupName
{
get
{
return this._groupName;
}
set
{
this._groupName = value;
}
}
public string VerifyMethod
{
get
{
return this._verifyMethod;
}
set
{
this._verifyMethod = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -