2023-10-28 09:06:35 +04:00
|
|
|
|
using UniversityDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BindingModels
|
|
|
|
|
{
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public class StudentBindingModel
|
2023-10-28 09:06:35 +04:00
|
|
|
|
{
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public int? Id { get; set; }
|
|
|
|
|
public string FIO { get; set; }
|
|
|
|
|
public string PhotoFilePath { get; set; }
|
|
|
|
|
public string Email { get; set; }
|
|
|
|
|
public string DirectionName { get; set; }
|
2023-10-28 09:06:35 +04:00
|
|
|
|
}
|
|
|
|
|
}
|