Sonarr/src/Sonarr.Api.V3/Series/SeriesEditorResource.cs

29 lines
817 B
C#
Raw Normal View History

2017-02-11 06:46:39 +00:00
using System.Collections.Generic;
using NzbDrone.Core.Tv;
namespace Sonarr.Api.V3.Series
{
public class SeriesEditorResource
{
public List<int> SeriesIds { get; set; }
public bool? Monitored { get; set; }
public int? QualityProfileId { get; set; }
2015-07-12 16:44:33 +00:00
public int? LanguageProfileId { get; set; }
2017-02-11 06:46:39 +00:00
public SeriesTypes? SeriesType { get; set; }
public bool? SeasonFolder { 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; }
2017-02-11 06:46:39 +00:00
}
public enum ApplyTags
{
Add,
Remove,
Replace
}
}