You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Core/Models/Search/V2/Music/AlbumArt.cs

16 lines
270 B

namespace Ombi.Core.Models.Search.V2.Music
{
public class AlbumArt
{
public AlbumArt()
{
}
public AlbumArt(string url)
{
Image = url;
}
public string Image { get; set; }
}
}