mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
16 lines
335 B
C#
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; }
|
|
}
|
|
}
|