19 lines
531 B
C#
19 lines
531 B
C#
using System;
|
|
using Aurora.Models.Media;
|
|
|
|
namespace Aurora.Services.Player
|
|
{
|
|
public delegate void PlaybackStateChangedEventHandler(object source, PlaybackStateChangedEventArgs e);
|
|
|
|
public class PlaybackStateChangedEventArgs : EventArgs
|
|
{
|
|
public PlaybackState OldState { get; }
|
|
public PlaybackState NewState { get; }
|
|
|
|
public PlaybackStateChangedEventArgs(PlaybackState oldState, PlaybackState newState)
|
|
{
|
|
OldState = oldState;
|
|
NewState = newState;
|
|
}
|
|
}
|
|
} |