PIbd-21_Pyatakov_KM_Markov_.../UniversityContracts/ViewModels/ReportStreamEducationStatusViewModel.cs

17 lines
549 B
C#
Raw Normal View History

2023-04-08 22:25:55 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityContracts.ViewModels
{
2023-04-09 00:48:03 +04:00
public class ReportStreamEducationStatusViewModel
2023-04-08 22:25:55 +04:00
{
2023-04-09 00:48:03 +04:00
public string StreamName { get; set; } = string.Empty;
public List<(string StudentFIO, string EdStatus)> StudentEdStatus { get; set; } = new();
2023-04-08 22:25:55 +04:00
// при выборе потока показывается список студентов на потоке и их статус обучения
2023-04-09 00:48:03 +04:00
2023-04-08 22:25:55 +04:00
}
}