You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/ViewModels/WeChatUserInfoOpenID.cs

23 lines
542 B

using System;
using System.Collections.Generic;
using System.Text;
namespace Tiobon.Core.Model.ViewModels
{
/// <summary>
/// 微信推送所需信息(OpenID版本)
/// 作者:胡丁文
/// 时间:2020-11-23 16:27:29
/// </summary>
public class WeChatUserInfoOpenID
{
/// <summary>
/// 微信公众号ID
/// </summary>
public string id { get; set; }
/// <summary>
/// 微信OpenID
/// </summary>
public List<string> userID { get; set; }
}
}