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.
18 lines
336 B
18 lines
336 B
5 days ago
|
namespace Admin.NET.Core.Service;
|
||
|
|
||
|
public class WechatUserInput : BasePageInput
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 昵称
|
||
|
/// </summary>
|
||
|
public string NickName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 手机号码
|
||
|
/// </summary>
|
||
|
public string PhoneNumber { get; set; }
|
||
|
}
|
||
|
|
||
|
public class DeleteWechatUserInput : BaseIdInput
|
||
|
{
|
||
|
}
|