NewGaoKaoApi/PaymentSDK/AliPay/Domain/CommentReplyOpenModel.cs

31 lines
764 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// CommentReplyOpenModel Data Structure.
/// </summary>
[Serializable]
public class CommentReplyOpenModel : AopObject
{
/// <summary>
/// 回复内容最多500字不区分中英文
/// </summary>
[XmlElement("content")]
public string Content { get; set; }
/// <summary>
/// 发表回复的操作员id
/// </summary>
[XmlElement("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 回复发表时间
/// </summary>
[XmlElement("reply_publish_time")]
public string ReplyPublishTime { get; set; }
}
}