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

14 lines
330 B
C#
Raw Permalink Normal View History

2024-05-01 17:54:58 +04:00
namespace SchoolContracts.SearchModels
{
public class DisciplineSearchModel
{
public int? Id { get; set; }
public DateOnly? DateFrom { get; set; }
public DateOnly? DateTo { get; set; }
public List<int>? StudentsIds { get; set; }
public int? ImplementerId { get; set; }
}
}