📄 chatgroup.cs
字号:
namespace Imps.Client.Core
{
using System;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
public class ChatGroup
{
private string _desc;
private int _id;
private bool _isAdmin;
private ICollection<Contact> _members;
private string _name;
private PermissionDict _permissions;
public event EventHandler InfoChanged;
public event EventHandler MembersChanged;
public void CommitChanges(bool recursive)
{
throw new Exception("The method or operation is not implemented.");
}
public void RetrieveLatest(bool recursive)
{
throw new Exception("The method or operation is not implemented.");
}
public void SendMessage(Message msg)
{
throw new NotImplementedException();
}
public string Description
{
get
{
return this._desc;
}
set
{
this._desc = value;
}
}
public int Id
{
get
{
return this._id;
}
}
public bool IsAdministrator
{
get
{
return this._isAdmin;
}
}
public ICollection<Contact> Members
{
get
{
return this._members;
}
}
public string Name
{
get
{
return this._name;
}
set
{
this._name = value;
}
}
public PermissionDict Permissions
{
get
{
return this._permissions;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -