namespace MfGames.ToolBuilder.Tables { /// /// A list of the known formats. This duplicates the values in /// `ConsoleTableBuilderFormat` in addition to adding /// our additional formats. /// public enum TableFormatType { /// /// Duplicates ConsoleTableBuilderFormat.Default. /// Default, /// /// Duplicates ConsoleTableBuilderFormat.MarkDown. /// Markdown, /// /// Duplicates ConsoleTableBuilderFormat.Alternative. /// Alternative, /// /// Duplicates ConsoleTableBuilderFormat.Minimal. /// Minimal, /// /// Indicates that the output should be written as a JSON structure. /// Json, /// /// Indicates that the output should be written as a PowerShell-style list. /// List, /// /// Indicates tht the output should be written as comma-separated values. /// Csv, } }