Moved playlist commands to view model.

This commit is contained in:
2025-03-14 22:59:15 -04:00
parent bd9b30abbd
commit 7c70eb3814
9 changed files with 565 additions and 23 deletions

View File

@@ -4,6 +4,6 @@ namespace Harmonia.Core.Playlists;
public class PlaylistSong(Song song)
{
public string UID { get; } = Guid.NewGuid().ToString();
public string UID { get; init; } = Guid.NewGuid().ToString();
public Song Song { get; init; } = song;
}