CHGenerator/WebsiteGenerator/Content/PageState.swift

19 lines
342 B
Swift
Raw Normal View History

2022-08-19 18:05:06 +02:00
import Foundation
enum PageState: String {
/**
Generate the page, and show it in overviews of the parent.
*/
case standard
/**
Generate the page, but don't provide links in overviews.
*/
case draft
/**
Generate the page, but don't include it in overviews of the parent.
*/
case hide
}