15 lines
330 B
C#
15 lines
330 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace APT.Infrastructure.Core
|
|||
|
|
{
|
|||
|
|
public class WeixinToken
|
|||
|
|
{
|
|||
|
|
public string access_token { get; set; }
|
|||
|
|
public int expires_in { get; set; }
|
|||
|
|
public string errcode { get; set; }
|
|||
|
|
public string errmsg { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|