PIbd-31_Rodionov.I.A._COP_28/COP/PortalAccountsContracts/SearchModels/AccountSearchModel.cs
2024-10-22 19:42:03 +04:00

12 lines
225 B
C#

namespace PortalAccountsContracts.SearchModels
{
public class AccountSearchModel
{
public int? Id { get; set; }
public string? Login { get; set; }
public int? RoleId { get; set; }
}
}