CourseWork_SchoolStudyAgain/SchoolAgainStudy/SchoolAgainStudyContracts/SearchModel/LessonSearchModel.cs
2023-04-03 20:01:18 +04:00

18 lines
395 B
C#

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 DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}