using System.Collections.Generic; using Lidarr.Api.V1.Albums; namespace Lidarr.Api.V1.AlbumStudio { public class AlbumStudioArtistResource { public int Id { get; set; } public bool? Monitored { get; set; } public List Albums { get; set; } } }