using System.Collections.Generic; namespace ADEPT.Core.Lesson; public class Page : IPage { public string Title { get; set; } public string Description { get; set; } public ILesson Lesson { get; } public PageContext PageContext { get; set; } public List Components { get; set; } public void Start() { throw new System.NotImplementedException(); } public void End() { throw new System.NotImplementedException(); } }