Computer_Hardware_Store/HardwareShop/HardwareShopContracts/SearchModels/ClientSearchModel.cs

14 lines
286 B
C#

using System.ComponentModel;
namespace HardwareShopContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? Login { get; set; } = string.Empty;
public string? Email { get; set; } = string.Empty;
}
}