Computer_Hardware_Store/HardwareShop/HardwareShopContracts/SearchModels/ClientSearchModel.cs

14 lines
286 B
C#
Raw Normal View History


2023-04-01 12:50:44 +04:00
using System.ComponentModel;
namespace HardwareShopContracts.SearchModels
2023-04-01 12:50:44 +04:00
{
public class ClientSearchModel
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;
}
}