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

23 lines
642 B
C#
Raw Normal View History

2023-04-03 18:46:26 +04:00
using SchoolDataModels.Models;
using System;
2023-04-03 18:26:05 +04:00
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.ViewModels
{
2023-04-03 18:46:26 +04:00
public class LessonViewModel : ILessonModel
2023-04-03 18:26:05 +04:00
{
public int Id { get; set; }
[DisplayName("Название занятия")]
public string LessonName { get; set; }
[DisplayName("стоимость занятия")]
public decimal LessonCost { get; set; }
public int? EmployeeId { get; set; }
public string EmployeeName { get; set; }
public Dictionary<int, (int, DateTime)> CircleLessons { get; set; }
}
}