17 lines
335 B
C#
Raw Normal View History

2023-04-03 17:26:05 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.ViewModels
{
public class ReportCircleLessonViewModel
{
2023-04-03 17:28:40 +03:00
public DateTime? StartDate { get; set; }
2023-04-03 17:26:05 +03:00
public List<string> Lessons { get; set; }
public int TotalCount { get; set; }
}
}