using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace UniversityContracts.ViewModels
{
    public class ReportStudentsDisciplineViewModel
    {
        public string StudentFIO { get; set; } = string.Empty;
        public List<string> Disciplines { get; set; } = new();
    }
}