20 lines
524 B
C#
20 lines
524 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YD_XinWei.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; }
|
|
}
|
|
}
|