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 ReportLessonCircleViewModel
{
public string LessonName { get; set; }
2023-04-03 17:26:05 +03:00
public List<DateTime> Circles { get; set; }
public int TotalCount { get; set; }
}
}