lidarr/src/NzbDrone.Core/MetadataSource/SkyHook/Resource/ImageResource.cs

12 lines
No EOL
295 B
C#

namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
{
public class ImageResource
{
public string CoverType { get; set; }
// Spotify Mapping
public string Url { get; set; }
public int Height { get; set; }
public int Width { get; set; }
}
}