Files
Backend-Api/AccountManagement.Application.Contracts/Account/AccountSearchModel.cs
2024-07-10 20:25:54 +03:30

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; }
}
}