///

/// 临时协议内容 /// [XmlRoot('message')] public class Message { /// /// 消息类型 /// [XmlAttribute('type')] public MessageType Type { get; set; } /// /// 消息发送者 /// [XmlAttribute('sender')] public string Sender { get; set; } /// /// 消息接收者 /// [XmlAttribute('receiver')] public string Receiver { get; set; } /// /// 消息内容 /// [XmlElement('content')] public string Content { get; set; } /// /// 发送时间 /// [XmlElement('sendTime')] public DateTime SendTime { get; set; } } /// /// 消息类型 /// public enum MessageType { /// /// 文本消息 /// [XmlEnum('text')] Text, /// /// 图片消息 /// [XmlEnum('image')] Image, /// /// 文件消息 /// [XmlEnum('file')] File }

}

C# 消息类定义 - 用于文本、图片和文件消息

原文地址: https://www.cveoy.top/t/topic/lf9W 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录