12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.QiYeWeChat
- {
- /// <summary>
- /// 企业微信 获取access_token
- /// </summary>
- public class Access_TokenView : ResponseBase
- {
- /// <summary>
- /// 获取到的凭证,最长为512字节
- /// </summary>
- public string access_token { get; set; } = null;
- /// <summary>
- /// 凭证的有效时间(秒)
- /// </summary>
- public int expires_in { get; set; }
- }
- }
|