15 lines
403 B
C#
15 lines
403 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace University.ViewModels
|
|
{
|
|
public class ReportDisciplineViewModel
|
|
{
|
|
public string DisciplineName { get; set; } = string.Empty;
|
|
public List<string> PlanOfStudys { get; set; } = new();
|
|
public List<string> Statements { get; set; } = new();
|
|
}
|
|
} |