10 lines
223 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; }
2024-05-26 19:47:37 +04:00
public string? Login { get; set; }
2024-04-29 17:06:56 +04:00
public string? Password { get; set; }
}
}