jellyfin/Emby.Dlna/PlayTo/PlaybackStoppedEventArgs.cs

14 lines
214 B
C#
Raw Normal View History

#nullable disable
#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
{
2020-08-20 21:04:57 +02:00
public UBaseObject MediaInfo { get; set; }
2016-10-30 00:22:20 +02:00
}
}