using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoMycarDialogonlineAnswerPushModel Data Structure. /// [Serializable] public class AlipayEcoMycarDialogonlineAnswerPushModel : AopObject { /// /// 回复内容 /// [XmlElement("answer_content")] public string AnswerContent { get; set; } /// /// 技师ID /// [XmlElement("answer_id")] public string AnswerId { get; set; } /// /// 技师头像 /// [XmlElement("answer_logo")] public string AnswerLogo { get; set; } /// /// 技师昵称 /// [XmlElement("answer_name")] public string AnswerName { get; set; } /// /// 回复图片 /// [XmlElement("answer_pic")] public string AnswerPic { get; set; } /// /// 回复时间 /// [XmlElement("answer_time")] public string AnswerTime { get; set; } /// /// 1:问题回复, 2:对话回复 /// [XmlElement("answer_type")] public string AnswerType { get; set; } /// /// 内容类型,1:文本, 2:图片 /// [XmlElement("content_type")] public string ContentType { get; set; } /// /// 问题ID /// [XmlElement("question_id")] public string QuestionId { get; set; } } }