KaraokePC/Herse.Models/MostPlayedSong.cs
Matt Bruce e2d1859a8f refactored favorites to mostplayed
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
2016-09-05 19:18:41 -05:00

16 lines
292 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 MostPlayedSong : Song
{
[JsonProperty("count")]
public int Count { get; set; }
}
}