using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace University.ViewModels { public class ReportDisciplineViewModel { public string DisciplineName { get; set; } = string.Empty; public List PlanOfStudys { get; set; } = new(); public List Statements { get; set; } = new(); } }