namespace SabreTools.Models.PlayStation3
{
///
public class SFOIndexTableEntry
{
///
/// Key relative offset.
/// (Absolute start offset of key) - (Absolute start offset of key_table)
///
public ushort KeyOffset { get; set; }
///
/// Data type
///
public DataFormat DataFormat { get; set; }
///
/// Data used length
///
public uint DataLength { get; set; }
///
/// Data total length. TITLE_ID is always = 16 bytes
///
public uint DataMaxLength { get; set; }
///
/// Data relative offset.
/// (Absolute start offset of data_1) - (Absolute start offset of data_table)
///
public uint DataOffset { get; set; }
}
}