17 lines
310 B
C#
17 lines
310 B
C#
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
|
|
namespace Emby.Dlna.PlayTo
|
|
{
|
|
public class PlaybackStartEventArgs : EventArgs
|
|
{
|
|
public PlaybackStartEventArgs(UBaseObject mediaInfo)
|
|
{
|
|
MediaInfo = mediaInfo;
|
|
}
|
|
|
|
public UBaseObject MediaInfo { get; set; }
|
|
}
|
|
}
|