2024-04-16 20:15:07 +04:00
|
|
|
|
using StudentEnrollmentDataModels.Models;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace StudentEnrollmentContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class CourseViewModel : ICourseModel
|
|
|
|
|
{
|
2024-05-06 20:26:16 +04:00
|
|
|
|
public int Id { get; set; }
|
2024-04-16 20:15:07 +04:00
|
|
|
|
[DisplayName("Название направления")]
|
|
|
|
|
public string CourseName { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Название факультета")]
|
|
|
|
|
public string FacultyName { get; set; } = string.Empty;
|
2024-05-06 20:26:16 +04:00
|
|
|
|
public int FacultyId { get; set; }
|
2024-04-16 20:15:07 +04:00
|
|
|
|
}
|
|
|
|
|
}
|