9 lines
276 B
C#
9 lines
276 B
C#
using Harmonia.Core.Playlists;
|
|
|
|
namespace Harmonia.Core.Player;
|
|
|
|
public class PlayingSongChangedEventArgs(PlaylistSong? oldSong, PlaylistSong? newSong) : EventArgs
|
|
{
|
|
public PlaylistSong? OldSong { get; } = oldSong;
|
|
public PlaylistSong? NewSong { get; } = newSong;
|
|
} |