Added logic for tags and audio engine.

This commit is contained in:
2025-02-20 00:01:07 -05:00
parent 2bafd474a0
commit f8cda3105a
20 changed files with 316 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
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; } = [];
}