namespace SabreTools.Models.Internal
{
///
/// 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,
}
}