using System.Collections.Generic;
using Fantasy.Entitas;
namespace NB.Chat;
///
/// 邮件管理组件
///
public class MailManageComponent : Entity
{
///
/// 会话列表
///
public Dictionary Conversations = new Dictionary();
///
/// 缓存了的列表
///
public HashSet CacheRoleIds = new HashSet();
}