jellyfin/Emby.Dlna/PlayTo/MediaChangedEventArgs.cs

16 lines
272 B
C#
Raw Normal View History

#nullable disable
2020-08-20 17:01:04 +02:00
#pragma warning disable CS1591
using System;
namespace Emby.Dlna.PlayTo
{
public class MediaChangedEventArgs : EventArgs
{
2020-08-20 21:04:57 +02:00
public UBaseObject OldMediaInfo { get; set; }
2020-08-20 17:01:04 +02:00
2020-08-20 21:04:57 +02:00
public UBaseObject NewMediaInfo { get; set; }
2020-08-20 17:01:04 +02:00
}
}