/
diev
/
FransBouma-DocNet
Обзор
Документация
Войти
/
diev
/
FransBouma-DocNet
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/DocNet/NavigationContext.cs
24 строки
615 B
Frans Bouma
Small layout corrections
05 июл 2017, 14:44
05 июл 2017, 14:44
068d152
Код
Авторство
О чём код?
namespace Docnet { public class NavigationContext { public NavigationContext() { this.MaxLevel = 2; } public NavigationContext(PathSpecification pathSpecification, UrlFormatting urlFormatting, int maxLevel, bool stripIndexHtm) : this() { PathSpecification = pathSpecification; UrlFormatting = urlFormatting; MaxLevel = maxLevel; StripIndexHtm = stripIndexHtm; } public PathSpecification PathSpecification { get; set; } public UrlFormatting UrlFormatting { get; set; } public int MaxLevel { get; set; } public bool StripIndexHtm { get; set; } } }