jellyfin/Emby.Dlna/PlayTo/PlaybackStoppedEventArgs.cs
2020-08-20 17:08:33 +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; }
}
}