26 lines
619 B
C#
26 lines
619 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using Newtonsoft.Json;
|
||
|
||
namespace Alipay.AopSdk.Core.Domain
|
||
{
|
||
/// <summary>
|
||
/// KoubeiItemDescription Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KoubeiItemDescription : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 标题下的描述列表,列表类型,每项不得超过100个中文字符,最多10项
|
||
/// </summary>
|
||
[JsonProperty("details")]
|
||
|
||
public List<string> Details { get; set; }
|
||
|
||
/// <summary>
|
||
/// 描述标题,不得超过15个中文字符
|
||
/// </summary>
|
||
[JsonProperty("title")]
|
||
public string Title { get; set; }
|
||
}
|
||
} |