19 lines
459 B
C#
Raw Normal View History

2023-04-03 17:46:26 +03:00
using SchoolDataModels.Models;
using System;
2023-04-03 17:14:39 +03:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.BindingModel
{
2023-04-03 17:46:26 +03:00
public class LessonBindingModel : ILessonModel
2023-04-03 17:14:39 +03:00
{
public int Id { get; set; }
public string LessonName { get; set; }
public double LessonPrice { get; set; }
public int EmployeeId { get; set; }
public string EmployeeName { get; set; } = string.Empty;
2023-04-03 17:14:39 +03:00
}
}