Files
sharpcompress/SharpCompress/Common/ArchiveExtractionEventArgs.cs

14 lines
280 B
C#
Raw Permalink Normal View History

2013-04-07 10:58:58 +01:00
using System;
namespace SharpCompress.Common
{
public class ArchiveExtractionEventArgs<T> : EventArgs
{
internal ArchiveExtractionEventArgs(T entry)
{
Item = entry;
}
public T Item { get; private set; }
}
2013-04-28 12:32:55 +01:00
}