using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace BWP.B3WeChat.Entities
|
|
{
|
|
/// <summary>
|
|
/// Token对象
|
|
/// </summary>
|
|
public class TokenObject:ErrorObject
|
|
{
|
|
public string access_token { get; set; }
|
|
public string expires_in { get; set; }
|
|
|
|
}
|
|
}
|