mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[SabreTools, Flags, DatFile, DatSTats] StatReportFormat stuff
This commit is contained in:
@@ -245,15 +245,16 @@ namespace SabreTools.Library.Data
|
||||
/// <summary>
|
||||
/// Determine which format to output Stats to
|
||||
/// </summary>
|
||||
/// [Flags]
|
||||
[Flags]
|
||||
public enum StatReportFormat
|
||||
{
|
||||
None = 0x01,
|
||||
HTML = None << 1,
|
||||
None = 0x0,
|
||||
Textfile = 0x01,
|
||||
HTML = Textfile << 1,
|
||||
CSV = HTML << 1,
|
||||
TSV = CSV << 1,
|
||||
|
||||
All = None | HTML | CSV | TSV,
|
||||
All = Textfile | HTML | CSV | TSV,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user