jellyfin/Emby.Dlna/PlayTo/PlaybackStoppedEventArgs.cs
2016-10-29 18:34:54 -04:00

15 lines
337 B
C#

using System;
namespace Emby.Dlna.PlayTo
{
public class PlaybackStoppedEventArgs : EventArgs
{
public uBaseObject MediaInfo { get; set; }
}
public class MediaChangedEventArgs : EventArgs
{
public uBaseObject OldMediaInfo { get; set; }
public uBaseObject NewMediaInfo { get; set; }
}
}