19 lines
659 B
C#
19 lines
659 B
C#
using System.ComponentModel;
|
|
using UniversityDataModels.Models;
|
|
|
|
namespace UniversityContracts.ViewModels
|
|
{
|
|
public class StudentViewModel : IStudentModel
|
|
{
|
|
public int Id { get; set; }
|
|
[DisplayName("ФИО студента")]
|
|
public string FIO { get; set; } = string.Empty;
|
|
[DisplayName("Путь к фото")]
|
|
public string PhotoFilePath { get; set; } = string.Empty;
|
|
[DisplayName("Электронная почта")]
|
|
public string Email { get; set; } = string.Empty;
|
|
[DisplayName("Направление")]
|
|
public string DirectionName { get; set; } = string.Empty;
|
|
}
|
|
}
|