14 lines
463 B
C#
14 lines
463 B
C#
namespace AccountManagement.Application.Contracts.Account;
|
|
|
|
public class AccountSearchModel
|
|
{
|
|
public long Id { get; set; }
|
|
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; }
|
|
} |