Files
SabreTools.Models/Compression/Quantum/ModelSymbol.cs

11 lines
355 B
C#
Raw Permalink Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.Compression.Quantum
2023-09-04 00:11:04 -04:00
{
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/cabinet.h"/>
/// <see href="http://www.russotto.net/quantumcomp.html"/>
public sealed class ModelSymbol
{
2023-09-10 21:24:10 -04:00
public ushort Symbol { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public ushort CumulativeFrequency { get; set; }
2023-09-04 00:11:04 -04:00
}
}