2023-04-03 18:26:05 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SchoolContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportViewerLessonModel
|
|
|
|
|
{
|
2023-04-06 22:52:23 +04:00
|
|
|
|
public string LessonName { get; set; }
|
2023-04-03 18:26:05 +04:00
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|