mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
More work on music!
This commit is contained in:
parent
98346d1c86
commit
12a80c7903
16 changed files with 180 additions and 85 deletions
16
src/Ombi.Core/Models/Search/V2/Music/AlbumArt.cs
Normal file
16
src/Ombi.Core/Models/Search/V2/Music/AlbumArt.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue