jellyfin/Emby.Dlna/PlayTo/PlaybackStoppedEventArgs.cs
2019-01-13 20:54:44 +01:00

16 lines
335 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; }
}
}