diff --git a/University/UniversityContracts/ViewModels/ReportStudentsViewModel.cs b/University/UniversityContracts/ViewModels/ReportStudentsViewModel.cs index 385cf79..fa3ff50 100644 --- a/University/UniversityContracts/ViewModels/ReportStudentsViewModel.cs +++ b/University/UniversityContracts/ViewModels/ReportStudentsViewModel.cs @@ -4,11 +4,11 @@ namespace UniversityContracts.ViewModels { public class ReportStudentsViewModel { - string StudentName { get; set; } = string.Empty; - string ExaminationForm { get; set; } = string.Empty; - MarkType mark { get; set; } = MarkType.Неизвестен; - DateTime ExaminationResultDate { get; set; } - int HoursCount { get; set; } - DateTime StatementDate { get; set; } + public string StudentName { get; set; } = string.Empty; + public string ExaminationForm { get; set; } = string.Empty; + public MarkType mark { get; set; } = MarkType.Неизвестен; + public DateTime ExaminationResultDate { get; set; } + public int HoursCount { get; set; } + public DateTime StatementDate { get; set; } } }