mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
19 lines
341 B
C#
19 lines
341 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace SabreTools.DatItems
|
||
|
|
{
|
||
|
|
/// <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,
|
||
|
|
}
|
||
|
|
}
|