using System; using System.Collections.Generic; using StudentPerformanceDataModels.Models; namespace StudentPerformanceContracts.BindingModels { public class StudentBindingModel : IStudentModel { public int Id { get; set; } public string Fullname { get; set; } = string.Empty; public List AverageScore { get; set; } = new List(); public int FormatId { get; set; } public DateTime AdmissionDate { get; set; } } }