using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// BuyerNotesInfo Data Structure.
///
[Serializable]
public class BuyerNotesInfo : AopObject
{
///
/// 标题下的描述列表,列表类型,每项不得为空,最多10项,总长度不能超过2600个中文字符
///
[JsonProperty("details")]
public List Details { get; set; }
///
/// 描述标题,不得超过15个中文字符
///
[JsonProperty("title")]
public string Title { get; set; }
}
}