mirror of
https://github.com/SabreTools/SabreTools.IO.git
synced 2026-05-07 13:03:56 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.IO.Meta` builds the normal Nuget package that is used by all other projects and includes all namespaces. `SabreTools.IO` builds to `SabreTools.IO.Common` to avoid overwriting issues on publish.
26 lines
758 B
C#
26 lines
758 B
C#
namespace SabreTools.IO.Compression.Deflate
|
|
{
|
|
/// <summary>
|
|
/// Represents information about a DEFLATE stream
|
|
/// </summary>
|
|
public class DeflateInfo
|
|
{
|
|
/// <summary>
|
|
/// Size of the deflated data
|
|
/// </summary>
|
|
/// <remarks>Set to a value less than 0 to ignore</remarks>
|
|
public long InputSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// Size of the inflated data
|
|
/// </summary>
|
|
/// <remarks>Set to a value less than 0 to ignore</remarks>
|
|
public long OutputSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// CRC-32 of the inflated data
|
|
/// </summary>
|
|
/// <remarks>Set to a value of 0 to ignore</remarks>
|
|
public uint Crc32 { get; set; }
|
|
}
|
|
} |