10 lines
231 B
C#
Raw Normal View History

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