using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// KoubeiContentCommentReplyCreateResponse. /// public class KoubeiContentCommentReplyCreateResponse : AopResponse { /// /// 口碑评价id,即入参中的comment_id,后续可用于回复内容的增删改查 /// [XmlElement("comment_id")] public string CommentId { get; set; } } }