More work on music!

This commit is contained in:
Jamie Rees 2019-08-08 21:55:30 +01:00
parent 98346d1c86
commit 12a80c7903
16 changed files with 180 additions and 85 deletions

View file

@ -0,0 +1,16 @@
namespace Ombi.Core.Models.Search.V2.Music
{
public class AlbumArt
{
public AlbumArt()
{
}
public AlbumArt(string url)
{
Image = url;
}
public string Image { get; set; }
}
}