PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/SearchModels/ClientSearchModel.cs

14 lines
271 B
C#
Raw Normal View History

2024-04-09 17:02:29 +04:00
namespace GiftShopContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}