Files
sharpcompress/SharpCompress/Common/FilePartExtractionBeginEventArgs.cs

22 lines
621 B
C#
Raw Normal View History

2013-04-07 10:58:58 +01:00
using System;
namespace SharpCompress.Common
{
public class FilePartExtractionBeginEventArgs : EventArgs
{
/// <summary>
/// File name for the part for the current entry
/// </summary>
public string Name { get; internal set; }
2013-04-28 12:32:55 +01:00
2013-04-07 10:58:58 +01:00
/// <summary>
/// Uncompressed size of the current entry in the part
/// </summary>
public long Size { get; internal set; }
2013-04-28 12:32:55 +01:00
2013-04-07 10:58:58 +01:00
/// <summary>
/// Compressed size of the current entry in the part
/// </summary>
public long CompressedSize { get; internal set; }
}
2013-04-28 12:32:55 +01:00
}