jellyfin/Emby.Dlna/PlayTo/PlaybackStartEventArgs.cs

12 lines
193 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2016-10-29 15:22:20 -07:00
2016-10-29 15:34:54 -07:00
namespace Emby.Dlna.PlayTo
2016-10-29 15:22:20 -07:00
{
public class PlaybackStartEventArgs : EventArgs
{
2020-08-20 12:04:57 -07:00
public UBaseObject MediaInfo { get; set; }
2016-10-29 15:22:20 -07:00
}
}