namespace SabreTools.Data.Models.BZip2 { public class BlockTrees { // TODO: Implement SymMap /// /// Indicates the number of Huffman trees used in /// the HUFF stage. It must between 2 and 6. /// /// Actually a 3-bit value public byte NumTrees { get; set; } /// /// Indicates the number of selectors used in the /// HUFF stage. There must be at least 1 selector /// defined. /// /// Actually a 15-bit value public ushort NumSels { get; set; } // TODO: Implement Selectors // TODO: Implement Trees } }