using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayCodeRecoResult Data Structure. /// [Serializable] public class AlipayCodeRecoResult : AopObject { /// /// 识别的验证码内容 /// [JsonProperty("content")] public string Content { get; set; } } }