12 lines
379 B
C#
12 lines
379 B
C#
using Harmonia.Core.Models;
|
|
|
|
namespace Harmonia.Core.Events;
|
|
|
|
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; } = [];
|
|
} |