ISEbd-21_Tukaeva_A_A_School/School/SchoolContracts/ViewModels/LessonViewModel.cs

21 lines
544 B
C#

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; }
}
}