namespace SabreTools.Models.DVD
{
///
public sealed class CellAddressTableEntry
{
///
/// VOBidn
///
public ushort VOBIdentity { get; set; }
///
/// CELLidn
///
public byte CellIdentity { get; set; }
///
/// Reserved
///
public byte Reserved { get; set; }
///
/// Starting sector within VOB
///
public uint StartingSectorWithinVOB { get; set; }
///
/// Ending sector within VOB
///
public uint EndingSectorWithinVOB { get; set; }
}
}