This commit is contained in:
MaxKarme 2023-04-08 22:32:40 +04:00
commit b4e77f7c87

View File

@ -7,6 +7,6 @@ namespace UniversityContracts.BindingModels
public string? FileName { get; set; } = string.Empty;
public DateTime? From { get; set; }
public DateTime? To { get; set; }
List<StudentViewModel> Students { get; set; } = new();
public List<StudentViewModel> Students { get; set; } = new();
}
}