2023-10-28 09:06:35 +04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using UniversityDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class StudentViewModel : IStudentModel
|
|
|
|
|
{
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public int? Id { get; set; }
|
2023-10-28 09:06:35 +04:00
|
|
|
|
[DisplayName("ФИО студента")]
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public string FIO { get; set; }
|
2023-10-28 09:06:35 +04:00
|
|
|
|
[DisplayName("Путь к фото")]
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public string PhotoFilePath { get; set; }
|
2023-10-28 09:06:35 +04:00
|
|
|
|
[DisplayName("Электронная почта")]
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public string Email { get; set; }
|
2023-10-28 09:06:35 +04:00
|
|
|
|
[DisplayName("Направление")]
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public string DirectionName { get; set; }
|
2023-10-28 09:06:35 +04:00
|
|
|
|
}
|
|
|
|
|
}
|