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.

37 lines
706 B
C#

9 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.MsgCenter
{
public class MsgEntity
{
/// <summary>
/// 消息主题
/// </summary>
public string Subject { get; set; }
/// <summary>
/// 操作类型
/// </summary>
public MsgEntityOperate Operate { get; set; }
/// <summary>
/// 子主题
/// </summary>
public string SubSubject { get; set; }
/// <summary>
/// 消息体
/// </summary>
public object Data { get; set; }
}
public enum MsgEntityOperate
{
= 0,
= 1
}
}