JsapiTicketResponse.cs 277 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 using Newtonsoft.Json; namespace WeixinApi.Models { public class JsapiTicketResponse : BaseResponse { [JsonProperty("ticket")] public string Ticket { get; set; } [JsonProperty("expires_in")] public int ExpiresIn { get; set; } } }