BizHawk/BizHawk.Client.Common/SharpCompress/Common/ArchiveExtractionEventArgs.cs

14 lines
254 B
C#

using System;
namespace SharpCompress.Common
{
public class ArchiveExtractionEventArgs<T> : EventArgs
{
internal ArchiveExtractionEventArgs(T entry)
{
Item = entry;
}
public T Item { get; }
}
}