10 lines
353 B
C#
10 lines
353 B
C#
namespace Harmonia.Core.Playlists;
|
|
|
|
public class PlaylistUpdatedEventArgs : EventArgs
|
|
{
|
|
public required PlaylistUpdateAction Action { get; init; }
|
|
public required int Index { get; init; }
|
|
public int? NewIndex { get; init; } = -1;
|
|
public required int Count { get; init; }
|
|
public required PlaylistSong[] Songs { get; init; } = [];
|
|
} |