PIbd-21_Pyatakov_K.M._Secure/Secure/SecureShopContracts/SearchModels/ClientSearchModel.cs

13 lines
272 B
C#
Raw Normal View History

2023-05-04 02:40:25 +04:00
namespace SecureShopContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}