mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
16 lines
354 B
C#
16 lines
354 B
C#
using System.Text;
|
|
using Compress.Utils;
|
|
|
|
namespace Compress.SevenZip.Structure
|
|
{
|
|
public class UnpackedStreamInfo
|
|
{
|
|
public ulong UnpackedSize;
|
|
public uint? Crc;
|
|
|
|
public void Report(ref StringBuilder sb)
|
|
{
|
|
sb.AppendLine($" Crc = {Crc.ToHex()} , Size = {UnpackedSize}");
|
|
}
|
|
}
|
|
} |