namespace SabreTools.Models.Compression.Quantum
{
///
public sealed class ModelSymbol
{
public ushort Symbol { get; set; }
///
/// The cumulative frequency is the frequency of all the symbols
/// which are at a higher index in the table than that symbol —
/// thus the last entry in the table has a cumulative frequency of 0.
///
public ushort CumulativeFrequency { get; set; }
}
}