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