27 lines
738 B
C#
Raw Normal View History

2025-04-24 18:31:27 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.User
{
public class WechatMiniSessionKey
{
/// <summary>
/// 用户唯一标识
/// </summary>
public string Openid { get; set; }
/// <summary>
/// 会话密钥
/// </summary>
public string SessionKey { get; set; }
/// <summary>
/// 用户在开放平台的唯一标识符。本字段在满足一定条件的情况下才返回。具体参看https://mp.weixin.qq.com/debug/wxadoc/dev/api/uinionID.html
/// </summary>
public string UnionId { get; set; }
}
}