ISEbd-22_CourseWork_School/School/SchoolContracts/SearchModels/StudentSearchModel.cs

12 lines
233 B
C#

namespace SchoolContracts.SearchModels
{
public class StudentSearchModel
{
public int? Id { get; set; }
public int? ExecutorId { get; set; }
public List<int>? DisciplinesIds { get; set; }
}
}