15 lines
296 B
C#
15 lines
296 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace DouyinApi.Model.ViewModels
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 微信OpenID列表Dto
|
|||
|
|
/// </summary>
|
|||
|
|
public class WeChatOpenIDsDto
|
|||
|
|
{
|
|||
|
|
public List<string> openid { get; set; } = new List<string>();
|
|||
|
|
}
|
|||
|
|
}
|