ISEbd-21_Tukaeva_A_A_School/School/SchoolContracts/ViewModels/ReportCircleLessonViewModel.cs

17 lines
335 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.ViewModels
{
public class ReportCircleLessonViewModel
{
public DateTime? StartDate { get; set; }
public List<string> Lessons { get; set; }
public int TotalCount { get; set; }
}
}