diff --git a/SabreTools.Data.Models/Metadata/Enums.cs b/SabreTools.Data.Models/Metadata/Enums.cs
index dd84bd6f..ae8a0447 100644
--- a/SabreTools.Data.Models/Metadata/Enums.cs
+++ b/SabreTools.Data.Models/Metadata/Enums.cs
@@ -246,6 +246,64 @@ namespace SabreTools.Data.Models.Metadata
Verified,
}
+ ///
+ /// Determine what type of file an item is
+ ///
+ public enum ItemType
+ {
+ ///
+ /// This is a fake flag that is used for filter only
+ ///
+ NULL = 0,
+
+ Adjuster,
+ Analog,
+ Archive,
+ BiosSet,
+ Chip,
+ Condition,
+ Configuration,
+ ConfLocation,
+ ConfSetting,
+ Control,
+ DataArea,
+ Device,
+ DeviceRef,
+ DipLocation,
+ DipSwitch,
+ DipValue,
+ Disk,
+ DiskArea,
+ Display,
+ Driver,
+ Dump,
+ Extension,
+ Feature,
+ Info,
+ Input,
+ Instance,
+ Media,
+ Original,
+ Part,
+ Port,
+ RamOption,
+ Release,
+ Rom,
+ Sample,
+ SharedFeat,
+ Slot,
+ SlotOption,
+ Software,
+ SoftwareList,
+ Sound,
+ Video,
+
+ ///
+ /// This is not a real type, only used internally
+ ///
+ Blank = int.MaxValue,
+ }
+
///
/// Determine the loadflag value
///
diff --git a/SabreTools.Data.Models/Metadata/ItemType.cs b/SabreTools.Data.Models/Metadata/ItemType.cs
deleted file mode 100644
index 72755d26..00000000
--- a/SabreTools.Data.Models/Metadata/ItemType.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-namespace SabreTools.Data.Models.Metadata
-{
- ///
- /// Determine what type of file an item is
- ///
- public enum ItemType
- {
- ///
- /// This is a fake flag that is used for filter only
- ///
- NULL = 0,
-
- Adjuster,
- Analog,
- Archive,
- BiosSet,
- Chip,
- Condition,
- Configuration,
- ConfLocation,
- ConfSetting,
- Control,
- DataArea,
- Device,
- DeviceRef,
- DipLocation,
- DipSwitch,
- DipValue,
- Disk,
- DiskArea,
- Display,
- Driver,
- Dump,
- Extension,
- Feature,
- Info,
- Input,
- Instance,
- Media,
- Original,
- Part,
- Port,
- RamOption,
- Release,
- Rom,
- Sample,
- SharedFeat,
- Slot,
- SlotOption,
- Software,
- SoftwareList,
- Sound,
- Video,
-
- ///
- /// This is not a real type, only used internally
- ///
- Blank = int.MaxValue,
- }
-}