18 lines
466 B
C#
Raw Normal View History

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