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

16 lines
280 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.ViewModels
{
public class ReportViewerLessonModel
{
public string LessonName { get; set; }
public int Count { get; set; }
}
}