namespace SabreTools.Data.Models.SecuROM
{
///
/// Represents a single key-length-value tuple in a
/// SecuROM DFA file
///
public class DFAEntry
{
///
/// Entry name, always 4 ASCII characters
///
public string Name { get; set; } = string.Empty;
///
/// Length of the value in bytes
///
public uint Length { get; set; }
///
/// Value of the entry whose length is given by
///
public byte[] Value { get; set; } = [];
}
}