namespace SabreTools.Data.Models.PIC
{
///
///
public class DiscInformationUnit
{
///
/// Unit header
///
public DiscInformationUnitHeader Header { get; set; } = new();
///
/// Unit body
///
public DiscInformationUnitBody Body { get; set; } = new();
///
/// Unit trailer (BD-R/RE only)
///
public DiscInformationUnitTrailer? Trailer { get; set; }
}
}