Files
sharpcompress/SharpCompress/Common/ReaderExtractionEventArgs.cs

14 lines
278 B
C#
Raw Permalink Normal View History

2014-12-22 16:34:47 +08:00
using System;
namespace SharpCompress.Common
{
2015-06-12 11:31:04 +01:00
public class ReaderExtractionEventArgs<T> : EventArgs
2014-12-22 16:34:47 +08:00
{
internal ReaderExtractionEventArgs(T entry)
{
Item = entry;
2015-06-12 11:31:04 +01:00
}
2014-12-22 16:34:47 +08:00
public T Item { get; private set; }
}
}