using System.Collections.Generic;
namespace VersOne.Epub.Schema
{
///
/// Top navigation level or a sub-level in the (represented by the <ol> HTML tag in the navigation document).
/// See for more information.
///
public class Epub3NavOl
{
///
/// Initializes a new instance of the class with the specified list of navigation items.
///
///
/// A list of headings, structures or other items of interest for navigation purposes (represented by the <li> HTML tag in the navigation document).
///
public Epub3NavOl(List? lis = null)
: this(false, lis)
{
}
///
/// Initializes a new instance of the class with specified hidden flag and the list of navigation items.
///
/// A value indicating whether the navigation level should be hidden from the reader or not.
///
/// A list of headings, structures or other items of interest for navigation purposes (represented by the <li> HTML tag in the navigation document).
///
public Epub3NavOl(bool isHidden, List? lis)
{
IsHidden = isHidden;
Lis = lis ?? new List();
}
///
/// Gets a value indicating whether the navigation level should be hidden from the reader or not.
/// See for more information.
///
public bool IsHidden { get; }
///
/// Gets a list of headings, structures or other items of interest for navigation purposes (represented by the <li> HTML tag in the navigation document).
/// See for more information.
///
public List Lis { get; }
}
}