Adding initial playback bar logic.

This commit is contained in:
2025-03-02 13:46:33 -05:00
parent fc28004c89
commit 1a9c1a5478
16 changed files with 374 additions and 25 deletions

View File

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