2024-04-18 19:09:47 +04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using UniversityDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class StudentViewModel : IStudentModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2024-04-29 15:37:19 +04:00
|
|
|
|
public int UserId { get; set; }
|
2024-04-18 19:09:47 +04:00
|
|
|
|
public int PlanOfStudyId { get; set; }
|
|
|
|
|
[DisplayName("ФИО")]
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Номер Телефона")]
|
|
|
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|