namespace SabreTools.Data.Models.PIC
{
///
///
/// TODO: Write models for the dependent contents, if possible
public class DiscInformationUnitBody
{
///
/// Disc Type Identifier
///
public string DiscTypeIdentifier { get; set; } = string.Empty;
///
/// Disc Size/Class/Version
///
public byte DiscSizeClassVersion { get; set; }
///
/// DI Unit Format dependent contents
///
/// 52 bytes for BD-ROM, 100 bytes for BD-R/RE
public byte[] FormatDependentContents { get; set; } = [];
}
}