Migrate aurora-sharp-desktop
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using Aurora.Models.Media;
|
||||
|
||||
namespace Aurora.Services.Player
|
||||
{
|
||||
public delegate void MediaChangedEventHandler(object source, MediaChangedEventArgs e);
|
||||
|
||||
public class MediaChangedEventArgs : EventArgs
|
||||
{
|
||||
public BaseMetadata NewMetadata { get; private set; }
|
||||
public string NewId { get; private set; }
|
||||
|
||||
public MediaChangedEventArgs(string id, BaseMetadata metadata)
|
||||
{
|
||||
NewMetadata = metadata;
|
||||
NewId = id;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user