using System;
namespace SabreTools.Data.Models.XDVDFS
{
///
/// Enum for DirectoryRecord.FileFlags
/// Values are assumed to match lowest byte value of DOS/FAT/NTFS file attributes
///
///
///
[Flags]
public enum FileFlags : byte
{
///
/// Record is read-only
///
READ_ONLY = 0x01,
///
/// Record is hidden
///
HIDDEN = 0x02,
///
/// Record is part of or for the operating system
///
SYSTEM = 0x04,
///
/// Record is a volume ID
///
VOLUME_ID = 0x08,
///
/// Record is a directory
///
DIRECTORY = 0x10,
///
/// Record should be archived
///
ARCHIVE = 0x20,
///
/// Record is a device
///
DEVICE = 0x40,
///
/// Record has no other attributes
///
NORMAL = 0x80,
}
}