using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// Text Data Structure.
///
[Serializable]
public class Text : AopObject
{
///
/// 文本消息的内容
///
[JsonProperty("content")]
public string Content { get; set; }
///
/// 文本消息的标题
///
[JsonProperty("title")]
public string Title { get; set; }
}
}