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

26 lines
674 B
C#
Raw Normal View History

2017-09-04 02:20:56 +00:00
using System.Collections.Generic;
using NzbDrone.Core.Music;
namespace Lidarr.Api.V3.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 SeriesTypes? SeriesType { get; set; }
public bool? AlbumFolder { get; set; }
public string RootFolderPath { get; set; }
public List<int> Tags { get; set; }
public ApplyTags ApplyTags { get; set; }
}
public enum ApplyTags
{
Add,
Remove,
Replace
}
}