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

15 lines
395 B
C#
Raw Normal View History

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