namespace SchoolDataModels.Models { public interface ILessonModel : IId { public string LessonName { get; set; } public decimal LessonCost { get; set; } public int? EmployeeId { get; set; } } }