123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #region Apache License Version 2.0
- #endregion Apache License Version 2.0
- using System;
- using Senparc.Weixin.Entities;
- namespace Senparc.Weixin.MP.Entities
- {
-
-
-
- [Serializable]
- public class JsApiTicketResult : WxJsonResult
- {
-
-
-
- public string ticket { get; set; }
-
-
-
- public int expires_in { get; set; }
- }
- }
|