using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// PrizeCustomMenu Data Structure.
///
[Serializable]
public class PrizeCustomMenu : AopObject
{
///
/// 菜单详情
///
[JsonProperty("text")]
public string Text { get; set; }
///
/// 菜单名称
///
[JsonProperty("title")]
public string Title { get; set; }
}
}