16 lines
484 B
C#
16 lines
484 B
C#
|
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<string> AverageScore { get; set; } = new List<string>();
|
|||
|
public int FormatId { get; set; }
|
|||
|
public DateTime AdmissionDate { get; set; }
|
|||
|
}
|
|||
|
}
|