2024-04-19 19:30:16 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class TeacherSearchModel
|
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
2024-04-29 15:37:19 +04:00
|
|
|
|
public int UserId { get; set; }
|
2024-04-19 19:30:16 +04:00
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
public string? AcademicDegree { get; set; }
|
|
|
|
|
public string? Position { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|