using System;
namespace SharpCompress.Common;
public sealed class FilePartExtractionBeginEventArgs : EventArgs
{
public FilePartExtractionBeginEventArgs(string name, long size, long compressedSize)
{
Name = name;
Size = size;
CompressedSize = compressedSize;
}
///
/// File name for the part for the current entry
///
public string Name { get; }
///
/// Uncompressed size of the current entry in the part
///
public long Size { get; }
///
/// Compressed size of the current entry in the part
///
public long CompressedSize { get; }
}