ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryContracts/SearchModels/ClientSearchModel.cs

14 lines
274 B
C#
Raw Normal View History

2024-04-26 00:17:50 +04:00
namespace FishFactoryContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}