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