using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UniversityContracts.ViewModels { public class ReportPlanOfStudyAndStudentViewModel { public string PlanOfStudyName { get; set; } = string.Empty; public List<(string Student, string Discipline)> StudentsAndDisciplines { get; set; } = new(); } }