KaraokePC/Herse.Models/SongList.cs
Matt Bruce 69caf72808 added in songlist uploader
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
2016-10-02 10:38:01 -05:00

29 lines
639 B
C#

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<SongListSong> 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; }
}
}