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.
21 lines
701 B
21 lines
701 B
using System.Collections.Generic;
|
|
using NzbDrone.Core.Music;
|
|
|
|
namespace Lidarr.Api.V1.Artist
|
|
{
|
|
public class ArtistEditorResource
|
|
{
|
|
public List<int> ArtistIds { get; set; }
|
|
public bool? Monitored { get; set; }
|
|
public NewItemMonitorTypes? MonitorNewItems { get; set; }
|
|
public int? QualityProfileId { get; set; }
|
|
public int? MetadataProfileId { get; set; }
|
|
public string RootFolderPath { get; set; }
|
|
public List<int> Tags { get; set; }
|
|
public ApplyTags ApplyTags { get; set; }
|
|
public bool MoveFiles { get; set; }
|
|
public bool DeleteFiles { get; set; }
|
|
public bool AddImportListExclusion { get; set; }
|
|
}
|
|
}
|