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.
Lidarr/src/NzbDrone.Core/MetadataSource/SkyHook/Resource/AlbumResource.cs

25 lines
840 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
{
public class AlbumResource
{
public string ArtistId { get; set; }
public List<ArtistResource> Artists { get; set; }
public string Disambiguation { get; set; }
public string Overview { get; set; }
public string Id { get; set; }
public List<ImageResource> Images { get; set; }
public List<LinkResource> Links { get; set; }
public RatingResource Rating { get; set; }
public DateTime ReleaseDate { get; set; }
public List<ReleaseResource> Releases { get; set; }
public List<string> SecondaryTypes { get; set; }
public string Title { get; set; }
public string Type { get; set; }
}
}