jellyfin/Emby.Dlna/PlayTo/PlaybackStoppedEventArgs.cs

12 lines
195 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2016-10-30 00:22:20 +02:00
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.PlayTo
2016-10-30 00:22:20 +02:00
{
public class PlaybackStoppedEventArgs : EventArgs
{
public uBaseObject MediaInfo { get; set; }
}
}