using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UniversityContracts.ViewModels { public class ReportStreamStudentEdStatPeriodViewModel { public int Id { get; set; } public string StreamName { get; set; } = string.Empty; public List<(string StudentFIO, string EdStatus)> StudentEdStatus { get; set; } = new(); } }