using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayEcardEduPublicBindResponse. /// public class AlipayEcardEduPublicBindResponse : AopResponse { /// /// 机构编码 /// [JsonProperty("agent_code")] public string AgentCode { get; set; } /// /// 卡号 /// [JsonProperty("card_no")] public string CardNo { get; set; } /// /// 成功 /// [JsonProperty("return_code")] public string ReturnCode { get; set; } } }