SUBD_SchoolSchedule/SchoolSchedule/SchoolScheduleContracts/ViewModels/TeacherViewModel.cs

18 lines
414 B
C#
Raw Normal View History

2024-04-08 14:40:49 +04:00
using SchoolScheduleDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolScheduleContracts.ViewModels
{
public class TeacherViewModel : ITeacherModel
{
public int Id { get; set; }
[DisplayName("Полное имя")]
public string FullName { get; set; } = string.Empty;
}
}