Added a cover art model. Better to do it now and not wait til later

This commit is contained in:
amazing-username
2019-07-06 22:26:55 -04:00
parent 089bd1191c
commit b5501e323f
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Text;
using Newtonsoft.Json;
namespace Icarus.Models
{
public class CoverArt
{
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("title")]
public string SongTitle { get; set; }
[JsonIgnore]
public string ImagePath { get; set; }
}
}