namespace SabreTools.Data.Models.PortableExecutable.Resource.Entries
{
///
/// The ACCELTABLEENTRY structure is repeated for all accelerator table entries in the resource.
/// The last entry in the table is flagged with the value 0x0080.
///
/// You can compute the number of elements in the table if you divide the length of the resource
/// by eight. Then your application can randomly access the individual fixed-length entries.
///
///
public sealed class AcceleratorTable : ResourceDataType
{
///
/// Accelerator table entries
///
public AcceleratorTableEntry[] Entries { get; set; } = [];
}
}