10 lines
229 B
C#
Raw Normal View History

2024-04-29 17:06:56 +04:00
namespace UniversityContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? PhoneNumber { get; set; }
public string? Password { get; set; }
}
}