jellyfin-server/MediaBrowser.Common/Events/GenericItemEventArgs.cs

10 lines
185 B
C#
Raw Normal View History

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