PIbd-22_Isaeva_A.I._FishFac.../FishFactoryContracts/SearchModels/ClientSearchModel.cs

11 lines
225 B
C#

namespace FishFactoryContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}