7 lines
252 B
C#
7 lines
252 B
C#
namespace Harmonia.Core.Playlists;
|
|
|
|
public class PlaylistChangedEventArgs(Playlist? oldPlaylist, Playlist? newPlaylist) : EventArgs
|
|
{
|
|
public readonly Playlist? OldPlaylist = oldPlaylist;
|
|
public readonly Playlist? NewPlaylist = newPlaylist;
|
|
} |