You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
305 B
13 lines
305 B
using Win_in.Sfs.Shared.Domain.Entities;
|
|
|
|
namespace Win_in.Sfs.Message.Domain;
|
|
|
|
public class NotifyMessage : MessageBase
|
|
{
|
|
/// <summary>
|
|
/// 消息类别 (如 上线通知,下线通知,操作通知等分类)
|
|
/// </summary>
|
|
[IgnoreUpdate]
|
|
public string MessageType { get; set; }
|
|
|
|
}
|
|
|