2023-04-03 20:01:18 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SchoolAgainStudyContracts.ViewModel
|
|
|
|
|
{
|
|
|
|
|
public class ReportLessonTaskViewModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string TitleLesson { get; set; } = string.Empty;
|
2023-04-06 19:54:34 +04:00
|
|
|
|
public DateTime DateEventLesson { get; set; }
|
2023-04-03 20:01:18 +04:00
|
|
|
|
public string TitleTask { get; set; } = string.Empty;
|
2023-04-06 19:54:34 +04:00
|
|
|
|
public DateTime DateIssueTask { get; set; }
|
2023-04-03 20:01:18 +04:00
|
|
|
|
}
|
|
|
|
|
}
|