Иван Алексеев de8ff2cfaf копец
2024-11-13 15:21:19 +04:00

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