6 lines
161 B
C#
6 lines
161 B
C#
namespace Harmonia.Core.Playlists;
|
|
|
|
public class PlaylistRemovedEventArgs(Playlist playlist) : EventArgs
|
|
{
|
|
public readonly Playlist Playlist = playlist;
|
|
} |