Adding initial playback bar logic.
This commit is contained in:
@@ -7,7 +7,7 @@ public class Playlist
|
||||
{
|
||||
public string UID { get; init; } = Guid.NewGuid().ToString();
|
||||
public string? Name { get; set; }
|
||||
public List<PlaylistSong> Songs { get; } = [];
|
||||
public List<PlaylistSong> Songs { get; init; } = []; // TODO: Change to "private init" once deserialization is fixed
|
||||
public List<GroupOption> GroupOptions { get; set; } = [];
|
||||
public List<SortOption> SortOptions { get; set; } = [];
|
||||
public bool IsLocked { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user