You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
536 B
C#
25 lines
536 B
C#
|
1 month ago
|
namespace AI.Models.SpecialMessages
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 特殊消息接口 - 所有特殊消息类型的基接口
|
||
|
|
/// </summary>
|
||
|
|
public interface ISpecialMessage
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 特殊消息的唯一标识符
|
||
|
|
/// </summary>
|
||
|
|
string Id { get; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 特殊消息类型名称
|
||
|
|
/// </summary>
|
||
|
|
string TypeName { get; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 是否需要实时更新
|
||
|
|
/// </summary>
|
||
|
|
bool IsLive { get; }
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|