15 lines
395 B
C#
15 lines
395 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|