add public in students report view model

This commit is contained in:
MaxKarme 2023-04-09 00:35:50 +04:00
parent 53703e0fd6
commit 47ca968924

View File

@ -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; }
}
}