mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-13 21:22:22 +00:00
18 lines
382 B
C#
18 lines
382 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SharpCompress.Common
|
|
{
|
|
public class ReaderExtractionEventArgs<T>:EventArgs
|
|
{
|
|
internal ReaderExtractionEventArgs(T entry)
|
|
{
|
|
Item = entry;
|
|
}
|
|
public T Item { get; private set; }
|
|
}
|
|
}
|