Move treat-as-file enum to better namespace

This commit is contained in:
Matt Nadareski
2020-12-12 13:53:58 -08:00
parent b426fbc199
commit aea5116bda
11 changed files with 33 additions and 27 deletions

View File

@@ -1307,4 +1307,19 @@ namespace SabreTools.FileTypes
TorrentZstd,
TorrentZPAQ,
}
/// <summary>
/// Determines what sort of files get externally hashed
/// </summary>
/// TODO: Can FileType be used instead?
[Flags]
public enum TreatAsFile
{
CHD = 1 << 0,
Archive = 1 << 1,
AaruFormat = 1 << 2,
NonArchive = CHD | AaruFormat,
All = CHD | Archive | AaruFormat,
}
}