19 lines
473 B
C#
19 lines
473 B
C#
using HardwareShopDataModels.Enums;
|
||
|
||
namespace HardwareShopContracts.SearchModels
|
||
{
|
||
public class UserSearchModel
|
||
{
|
||
public int? Id { get; set; }
|
||
|
||
public string? Login { get; set; } = string.Empty;
|
||
|
||
public string? Email { get; set; } = string.Empty;
|
||
|
||
public int? UserId { get; set; }
|
||
|
||
public string? Password { get; set; } = string.Empty;
|
||
|
||
public UserRole? Role { get; set; } = UserRole.Неизвестен;
|
||
}
|
||
} |