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

25 lines
636 B
C#
Raw Normal View History

2017-09-04 02:20:56 +00:00
using System.Collections.Generic;
2017-10-31 01:28:29 +00:00
namespace Lidarr.Api.V1.Artist
2017-09-04 02:20:56 +00:00
{
public class ArtistEditorResource
{
public List<int> ArtistIds { get; set; }
public bool? Monitored { get; set; }
public int? QualityProfileId { get; set; }
public int? MetadataProfileId { get; set; }
2017-09-04 02:20:56 +00:00
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; }
2017-09-04 02:20:56 +00:00
}
public enum ApplyTags
{
Add,
Remove,
Replace
}
}