21 lines
492 B
C#
21 lines
492 B
C#
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<IPageComponent> Components { get; set; }
|
|
public void Start()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public void End()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
} |