PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantContracts/SearchModels/ClientSearchModel.cs
2024-04-05 23:37:18 +04:00

11 lines
275 B
C#

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