2023-04-07 17:34:20 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportStreamStudentEdStatPeriodViewModel
|
|
|
|
|
{
|
2023-04-08 20:16:42 +04:00
|
|
|
|
public int Id { get; set; }
|
2023-04-07 17:34:20 +04:00
|
|
|
|
public string StreamName { get; set; } = string.Empty;
|
|
|
|
|
public List<(string StudentFIO, string EdStatus)> StudentEdStatus { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|