15 lines
477 B
C#
15 lines
477 B
C#
namespace AccountManagement.Application.Contracts.Account
|
|
{
|
|
public class AccountSearchModel
|
|
{
|
|
public string Fullname { get; set; }
|
|
public string Username { get; set; }
|
|
public string Mobile { get; set; }
|
|
public long RoleId { get; set; }
|
|
public string RoleName { get; set; }
|
|
public string VerifyCode { get; set; }
|
|
public string IsActiveString { get; set; }
|
|
public string positionId { get; set; }
|
|
}
|
|
}
|