namespace Harmonia.Core.Models; public class Playlist(string name) { public string UID { get; set; } = Guid.NewGuid().ToString(); public string Name { get; set; } = name; public List Songs { get; set; } = []; public List GroupOptions { get; set; } = []; public List SortOptions { get; set; } = []; public bool IsLocked { get; set; } }