tijian_tieying/web/Web/App_Code/WeiXin/AccessToken.cs

14 lines
251 B
C#
Raw Permalink Normal View History

2025-02-20 12:14:39 +08:00
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; }
}
}