ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/BindingModels/StudentBindingModel.cs
Данияр Аглиуллов 310f02160b 1 раз
2024-02-02 11:10:52 +04:00

18 lines
400 B
C#

using EkzamenDataModels;
namespace EkzamenContracts.BindingModels
{
public class StudentBindingModel : IStudentModel
{
public string fio { get; set; }
public int GroupId { get; set; }
public int RecordBookId { get; set; }
public int PassMark { get; set; }
public DateTime DateEnrollment { get; set; }
public int Id { get; set; }
}
}