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.
13 lines
295 B
13 lines
295 B
7 years ago
|
using System.Collections.Generic;
|
||
7 years ago
|
using Lidarr.Api.V1.Albums;
|
||
7 years ago
|
|
||
7 years ago
|
namespace Lidarr.Api.V1.AlbumStudio
|
||
7 years ago
|
{
|
||
|
public class AlbumStudioArtistResource
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
public bool? Monitored { get; set; }
|
||
|
public List<AlbumResource> Albums { get; set; }
|
||
|
}
|
||
|
}
|