CourseWork_SchoolStudyAgain/SchoolAgainStudy/SchoolAgainStudyContracts/SearchModel/LessonSearchModel.cs

20 lines
488 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolAgainStudyContracts.SearchModel
{
public class LessonSearchModel
{
public int? Id { get; set; }
public string? Title { get; set; }
public int? TeacherId { get; set; }
public DateTime? DateCreate { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}