22 lines
480 B
C#
22 lines
480 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Message.Response.Wechat
|
|||
|
{
|
|||
|
public class WxTokenTicket
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 7200秒有效期的token
|
|||
|
/// </summary>
|
|||
|
public string AccessToken { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 7200秒有效期的Ticket
|
|||
|
/// </summary>
|
|||
|
public string Ticket { get; set; }
|
|||
|
}
|
|||
|
}
|