mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-11 13:35:00 +00:00
29 lines
686 B
C#
29 lines
686 B
C#
using System;
|
|
|
|
namespace SharpCompress.Common;
|
|
|
|
public sealed class FilePartExtractionBeginEventArgs : EventArgs
|
|
{
|
|
public FilePartExtractionBeginEventArgs(string name, long size, long compressedSize)
|
|
{
|
|
Name = name;
|
|
Size = size;
|
|
CompressedSize = compressedSize;
|
|
}
|
|
|
|
/// <summary>
|
|
/// File name for the part for the current entry
|
|
/// </summary>
|
|
public string Name { get; }
|
|
|
|
/// <summary>
|
|
/// Uncompressed size of the current entry in the part
|
|
/// </summary>
|
|
public long Size { get; }
|
|
|
|
/// <summary>
|
|
/// Compressed size of the current entry in the part
|
|
/// </summary>
|
|
public long CompressedSize { get; }
|
|
}
|