using System.Collections.Generic; namespace SharpCompress.Compressors.Rar.VM { internal class VMPreparedProgram { internal List Commands = new List(); internal List AltCommands = new List(); public int CommandCount { get; set; } internal List GlobalData = new List(); internal List StaticData = new List(); // static data contained in DB operators internal int[] InitR = new int[7]; internal int FilteredDataOffset { get; set; } internal int FilteredDataSize { get; set; } } }