2021-07-26 14:02:32 -07:00
|
|
|
#pragma warning disable CS1591
|
2020-08-20 08:01:04 -07:00
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Emby.Dlna.PlayTo
|
|
|
|
{
|
|
|
|
public class MediaChangedEventArgs : EventArgs
|
|
|
|
{
|
2021-07-26 14:02:32 -07:00
|
|
|
public MediaChangedEventArgs(UBaseObject oldMediaInfo, UBaseObject newMediaInfo)
|
|
|
|
{
|
|
|
|
OldMediaInfo = oldMediaInfo;
|
|
|
|
NewMediaInfo = newMediaInfo;
|
|
|
|
}
|
|
|
|
|
2020-08-20 12:04:57 -07:00
|
|
|
public UBaseObject OldMediaInfo { get; set; }
|
2020-08-20 08:01:04 -07:00
|
|
|
|
2020-08-20 12:04:57 -07:00
|
|
|
public UBaseObject NewMediaInfo { get; set; }
|
2020-08-20 08:01:04 -07:00
|
|
|
}
|
|
|
|
}
|