using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// SignatureValidateResponse. /// public class SignatureValidateResponse : TopResponse { /// /// appkey拥有者ID /// [XmlElement("isv_id")] public long IsvId { get; set; } /// /// 验证成功后返回加密的secret信息,秘钥为signature的前8位 /// [XmlElement("secret")] public string Secret { get; set; } /// /// 签名是否有效 /// [XmlElement("valid")] public bool Valid { get; set; } } }