namespace SabreTools.Models.DVD { /// public sealed class AudioSubPictureAttributesTableEntry { /// /// End address (EA) /// public uint EndAddress { get; set; } /// /// VTS_CAT (copy of offset 022-025 of the VTS IFO file) /// 0=unspecified, 1=Karaoke /// public uint Category { get; set; } /// /// Copy of VTS attributes (offset 100 and on from the VTS IFO /// file, usually 0x300 bytes long) /// #if NET48 public byte[] AttributesCopy { get; set; } #else public byte[]? AttributesCopy { get; set; } #endif } }