22 lines
426 B
C#
22 lines
426 B
C#
using System;
|
|
|
|
namespace AppletMvcService.Models
|
|
{
|
|
public class AccessToken
|
|
{
|
|
public string account_num { get; set; }
|
|
|
|
public string appid { get; set; }
|
|
|
|
public string secret { get; set; }
|
|
|
|
public string access_token { get; set; }
|
|
|
|
public int expires_in { get; set; }
|
|
|
|
public DateTime get_time { get; set; }
|
|
|
|
public DateTime expire_time { get; set; }
|
|
}
|
|
|
|
} |