Files
sharpcompress/SharpCompress/Common/ArchiveExtractionEventArgs.cs
2013-04-28 12:32:55 +01:00

14 lines
280 B
C#

using System;
namespace SharpCompress.Common
{
public class ArchiveExtractionEventArgs<T> : EventArgs
{
internal ArchiveExtractionEventArgs(T entry)
{
Item = entry;
}
public T Item { get; private set; }
}
}