Lidarr/src/Lidarr.Api.V1/Artist/ArtistEditorResource.cs

27 lines
728 B
C#

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 enum ApplyTags
{
Add,
Remove,
Replace
}
}