using System; using System.Collections.Generic; namespace VersOne.Epub.Schema { public class EpubNavigationPoint { public string Id { get; set; } public string Class { get; set; } public string PlayOrder { get; set; } public List NavigationLabels { get; set; } public EpubNavigationContent Content { get; set; } public List ChildNavigationPoints { get; set; } public override string ToString() { return String.Format("Id: {0}, Content.Source: {1}", Id, Content.Source); } } }