YD_Event.Admin/YD_Event.Api/WeChat/Lib/OpenIdAndSessionKey.cs

20 lines
523 B
C#
Raw Normal View History

2025-12-15 10:52:47 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace YD_Event.Api.WeChat.Lib
{
/// <summary>
/// 微信小程序从服务端获取的OpenId和SessionKey信息结构
/// </summary>
public class OpenIdAndSessionKey
{
public string openid { get; set; }
public string unionId { get; set; }
public string session_key { get; set; }
public string errcode { get; set; }
public string errmsg { get; set; }
}
}