Computer_Hardware_Store/HardwareShop/HardwareShopContracts/SearchModels/UserSearchModel.cs

19 lines
473 B
C#
Raw Normal View History

using HardwareShopDataModels.Enums;
2023-04-01 12:50:44 +04:00
namespace HardwareShopContracts.SearchModels
2023-04-01 12:50:44 +04:00
{
2023-04-01 13:23:19 +04:00
public class UserSearchModel
2023-04-01 12:50:44 +04:00
{
public int? Id { get; set; }
public string? Login { get; set; } = string.Empty;
public string? Email { get; set; } = string.Empty;
public int? UserId { get; set; }
2023-04-01 20:28:02 +04:00
public string? Password { get; set; } = string.Empty;
public UserRole? Role { get; set; } = UserRole.Неизвестен;
2023-04-01 12:50:44 +04:00
}
}