jellyfin/MediaBrowser.Common/Events/GenericItemEventArgs.cs

10 lines
185 B
C#
Raw Normal View History

2012-07-12 08:55:27 +02:00
using System;
namespace MediaBrowser.Common.Events
{
public class GenericItemEventArgs<TItemType> : EventArgs
{
public TItemType Item { get; set; }
}
}