jellyfin/Emby.Dlna/PlayTo/PlaybackStartEventArgs.cs

14 lines
212 B
C#

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