Added logic for tags and audio engine.
This commit is contained in:
10
Harmonia.Core/Playlists/PlaylistUpdatedEventArgs.cs
Normal file
10
Harmonia.Core/Playlists/PlaylistUpdatedEventArgs.cs
Normal 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; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user