mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
17 lines
314 B
C#
17 lines
314 B
C#
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
|
|
namespace Emby.Dlna.PlayTo
|
|
{
|
|
public class PlaybackStoppedEventArgs : EventArgs
|
|
{
|
|
public PlaybackStoppedEventArgs(UBaseObject mediaInfo)
|
|
{
|
|
MediaInfo = mediaInfo;
|
|
}
|
|
|
|
public UBaseObject MediaInfo { get; set; }
|
|
}
|
|
}
|