14 lines
251 B
C#
14 lines
251 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
|
|||
|
|
namespace Models.WeiXin
|
|||
|
|
{
|
|||
|
|
public class AccessToken
|
|||
|
|
{
|
|||
|
|
public string access_token { get; set; }
|
|||
|
|
|
|||
|
|
public int expires_in { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|