ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryContracts/SearchModels/ClientSearchModel.cs
2024-04-26 00:17:50 +04:00

14 lines
274 B
C#

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