PIbd-21_Markov_D.P._LawFirm/LawFirm/LawFirmContracts/SearchModels/ClientSearchModel.cs

12 lines
222 B
C#
Raw Normal View History

2023-03-28 01:05:56 +04:00
namespace LawFirmContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}