mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
d8c89f5bbd
Ability to cancel an import lookup/search at any point. Ability to move artist path from Artist Edit or bulk move from Mass Editor. Trigger manual import for Artist path from Artist Detail page. Pulled from Sonarr
27 lines
715 B
C#
27 lines
715 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 int? QualityProfileId { get; set; }
|
|
public int? LanguageProfileId { get; set; }
|
|
public int? MetadataProfileId { get; set; }
|
|
public bool? AlbumFolder { get; set; }
|
|
public string RootFolderPath { get; set; }
|
|
public List<int> Tags { get; set; }
|
|
public ApplyTags ApplyTags { get; set; }
|
|
public bool MoveFiles { get; set; }
|
|
}
|
|
|
|
public enum ApplyTags
|
|
{
|
|
Add,
|
|
Remove,
|
|
Replace
|
|
}
|
|
}
|