using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// SiteInfo Data Structure. /// [Serializable] public class SiteInfo : AopObject { /// /// 测试账号 /// [JsonProperty("account")] public string Account { get; set; } /// /// 测试密码 /// [JsonProperty("password")] public string Password { get; set; } /// /// 站点名称 /// [JsonProperty("site_name")] public string SiteName { get; set; } /// /// 网站:01 APP : 02 服务窗:03 公众号:04 其他:05 /// [JsonProperty("site_type")] public string SiteType { get; set; } /// /// 站点地址 /// [JsonProperty("site_url")] public string SiteUrl { get; set; } } }