17 lines
335 B
C#
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; }
|
|
}
|
|
|
|
}
|