9 lines
192 B
C#
9 lines
192 B
C#
|
|
namespace Easy.Admin.Application.User.Dtos;
|
|||
|
|
|
|||
|
|
public class AuthAccountPageQueryInput : Pagination
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 昵称
|
|||
|
|
/// </summary>
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
}
|