16 lines
422 B
C#
16 lines
422 B
C#
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Response
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// KoubeiContentCommentReplyCreateResponse.
|
|||
|
|
/// </summary>
|
|||
|
|
public class KoubeiContentCommentReplyCreateResponse : AopResponse
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 口碑评价id,即入参中的comment_id,后续可用于回复内容的增删改查
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("comment_id")]
|
|||
|
|
public string CommentId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|