TinySite.Models.BookPage.BookPage C# (CSharp) Method

BookPage() public method

public BookPage ( DocumentFile document, bool chapterPage = false ) : System.Collections.Generic
document DocumentFile
chapterPage bool
return System.Collections.Generic
        public BookPage(DocumentFile document, bool chapterPage = false)
        {
            this.Document = document;

            this.Chapter = chapterPage;

            if (this.Chapter)
            {
                this.SubPages = new List<BookPage>();
            }
        }