Move output type enum to better namespace

This commit is contained in:
Matt Nadareski
2020-12-12 13:40:46 -08:00
parent 8a401982eb
commit b426fbc199
7 changed files with 28 additions and 30 deletions

View File

@@ -1283,4 +1283,28 @@ namespace SabreTools.FileTypes
ZPAQArchive,
ZstdArchive,
}
/// <summary>
/// Output format for rebuilt files
/// </summary>
public enum OutputFormat
{
// Currently implemented
Folder,
ParentFolder,
TorrentZip,
TorrentGzip,
TorrentGzipRomba,
TorrentXZ,
TorrentXZRomba,
TapeArchive,
// Currently unimplemented fully
Torrent7Zip,
TorrentRar,
TorrentLRZip,
TorrentLZ4,
TorrentZstd,
TorrentZPAQ,
}
}