jellyfin/Emby.Dlna/PlayTo/PlaybackStoppedEventArgs.cs

12 lines
195 B
C#

#pragma warning disable CS1591
using System;
namespace Emby.Dlna.PlayTo
{
public class PlaybackStoppedEventArgs : EventArgs
{
public UBaseObject MediaInfo { get; set; }
}
}