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.
35 lines
702 B
35 lines
702 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Runtime.Serialization;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace QM.Exchange.Interface
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 通用消息
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
[DataContract]
|
||
|
public class CommonMessage
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 消息ID
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string MsgID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 消息类型
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string MsgType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 消息内容
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string Content { get; set; }
|
||
|
}
|
||
|
}
|