20 lines
474 B
C#
20 lines
474 B
C#
using System.Collections.Generic;
|
|
using Fantasy.Entitas;
|
|
|
|
namespace NB.Chat;
|
|
|
|
/// <summary>
|
|
/// 邮件管理组件
|
|
/// </summary>
|
|
public class MailManageComponent : Entity
|
|
{
|
|
/// <summary>
|
|
/// 会话列表
|
|
/// </summary>
|
|
public Dictionary<string, MailConversation> Conversations = new Dictionary<string, MailConversation>();
|
|
|
|
/// <summary>
|
|
/// 缓存了的列表
|
|
/// </summary>
|
|
public HashSet<long> CacheRoleIds = new HashSet<long>();
|
|
} |