22 lines
597 B
C#
22 lines
597 B
C#
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
|
|
{
|
|
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; }
|
|
}
|
|
}
|