PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/SearchModels/ClientSearchModel.cs
Arkadiy Radaev b8c207c772 res5
2024-04-09 17:02:29 +04:00

14 lines
271 B
C#

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; }
}
}