This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
419 B
C#
Raw Normal View History

using System;
2019-07-05 14:17:09 -04:00
using Aurora.Models.Media;
2019-07-05 14:17:09 -04:00
namespace Aurora.Services.PlayerService
{
public delegate void MediaChangedEventHandler(object source, MediaChangedEventArgs e);
public class MediaChangedEventArgs : EventArgs
{
public BaseMetadata NewMetadata { get; private set; }
public MediaChangedEventArgs(BaseMetadata metadata)
{
NewMetadata = metadata;
}
}
}