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

30 lines
676 B
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>
/// CommentReplyOpenModel Data Structure.
/// </summary>
[Serializable]
public class CommentReplyOpenModel : AopObject
{
/// <summary>
/// 回复内容最多500字不区分中英文
/// </summary>
[JsonProperty("content")]
public string Content { get; set; }
/// <summary>
/// 发表回复的操作员id
/// </summary>
[JsonProperty("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 回复发表时间
/// </summary>
[JsonProperty("reply_publish_time")]
public string ReplyPublishTime { get; set; }
}
}