18 lines
466 B
C#
18 lines
466 B
C#
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;
|
|
public DateTime DateEventLesson { get; set; }
|
|
public string TitleTask { get; set; } = string.Empty;
|
|
public DateTime DateIssueTask { get; set; }
|
|
}
|
|
}
|