This commit is contained in:
MaxKarme 2023-04-09 00:36:04 +04:00
commit c59b0e725c

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