using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Herse.Models { public class SongList { [JsonProperty("title")] public string Title { get; set; } [JsonProperty("songs")] public List Songs { get; set; } } public class SongListSong { [JsonProperty("title")] public string Title { get; set; } [JsonProperty("artist")] public string Artist { get; set; } [JsonProperty("position")] public int Position { get; set; } [JsonProperty("foundSongs")] public List FoundSongs { get; set; } = new List(); } }