mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
19 lines
368 B
C#
19 lines
368 B
C#
#pragma warning disable CS1591
|
|
|
|
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; }
|
|
}
|
|
}
|