using SchoolDataModels.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolContracts.ViewModels { public class LessonViewModel : ILessonModel { public int Id { get; set; } [DisplayName("Название занятия")] public string LessonName { get; set; } = string.Empty; [DisplayName("стоимость занятия")] public double LessonPrice { get; set; } public int EmployeeId { get; set; } } }