mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 13:35:38 +00:00
14 lines
278 B
C#
14 lines
278 B
C#
using System;
|
|
|
|
namespace SharpCompress.Common
|
|
{
|
|
public class ReaderExtractionEventArgs<T> : EventArgs
|
|
{
|
|
internal ReaderExtractionEventArgs(T entry)
|
|
{
|
|
Item = entry;
|
|
}
|
|
public T Item { get; private set; }
|
|
}
|
|
}
|