9 lines
281 B
C#
9 lines
281 B
C#
using Harmonia.Core.Playlists;
|
|
|
|
namespace Harmonia.Core.Player;
|
|
|
|
public class PlaylistChangedEventArgs(Playlist? oldPlaylist, Playlist? newPlaylist) : EventArgs
|
|
{
|
|
public Playlist? OldPlaylist { get; } = oldPlaylist;
|
|
public Playlist? NewPlaylist { get; } = newPlaylist;
|
|
} |