jellyfin/Emby.Dlna/PlayTo/PlaybackStoppedEventArgs.cs
2020-08-20 21:04:57 +02:00

12 lines
195 B
C#

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