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

12 lines
233 B
C#
Raw Normal View History

2024-05-01 17:54:58 +04:00
namespace SchoolContracts.SearchModels
{
public class StudentSearchModel
{
public int? Id { get; set; }
public int? ExecutorId { get; set; }
public List<int>? DisciplinesIds { get; set; }
}
}