Move dupe type enum to better namespace

This commit is contained in:
Matt Nadareski
2020-12-12 14:04:32 -08:00
parent aea5116bda
commit 45d653c0b8
15 changed files with 19 additions and 28 deletions

View File

@@ -700,21 +700,6 @@ namespace SabreTools.Core
Unknown = 1 << 4,
}
/// <summary>
/// Determines which type of duplicate a file is
/// </summary>
[Flags]
public enum DupeType
{
// Type of match
Hash = 1 << 0,
All = 1 << 1,
// Location of match
Internal = 1 << 2,
External = 1 << 3,
}
/// <summary>
/// Determine the endianness
/// </summary>