2025-04-24 18:31:27 +08:00

27 lines
738 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}