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

12 lines
193 B
C#

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