Computer_Hardware_Store/HardwareShop/HardwareShopContracts/SearchModels/UserSearchModel.cs

10 lines
313 B
C#

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 string? Password { get; set; } = string.Empty;
}
}