2024-04-29 17:06:56 +04:00

10 lines
231 B
C#

namespace UniversityContracts.SearchModels
{
public class EmployeeSearchModel
{
public int? Id { get; set; }
public string? PhoneNumber { get; set; }
public string? Password { get; set; }
}
}