Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoMycarDialogonlineAnswerPushModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

66 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarDialogonlineAnswerPushModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarDialogonlineAnswerPushModel : AopObject
{
/// <summary>
/// 回复内容
/// </summary>
[JsonProperty("answer_content")]
public string AnswerContent { get; set; }
/// <summary>
/// 技师ID
/// </summary>
[JsonProperty("answer_id")]
public string AnswerId { get; set; }
/// <summary>
/// 技师头像
/// </summary>
[JsonProperty("answer_logo")]
public string AnswerLogo { get; set; }
/// <summary>
/// 技师昵称
/// </summary>
[JsonProperty("answer_name")]
public string AnswerName { get; set; }
/// <summary>
/// 回复图片
/// </summary>
[JsonProperty("answer_pic")]
public string AnswerPic { get; set; }
/// <summary>
/// 回复时间
/// </summary>
[JsonProperty("answer_time")]
public string AnswerTime { get; set; }
/// <summary>
/// 1问题回复 2对话回复
/// </summary>
[JsonProperty("answer_type")]
public string AnswerType { get; set; }
/// <summary>
/// 内容类型1文本 2图片
/// </summary>
[JsonProperty("content_type")]
public string ContentType { get; set; }
/// <summary>
/// 问题ID
/// </summary>
[JsonProperty("question_id")]
public string QuestionId { get; set; }
}
}