namespace SabreTools.Models.PIC { /// /// /// TODO: Write models for the dependent contents, if possible public class DiscInformationUnitBody { /// /// Disc Type Identifier /// = "BDO" for BD-ROM /// = "BDU" for BD-ROM Ultra /// = "BDW" for BD-RE /// = "BDR" for BD-R /// public string? DiscTypeIdentifier { get; set; } /// /// 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; } } }