mirror of https://github.com/Sonarr/Sonarr
26 lines
662 B
C#
26 lines
662 B
C#
|
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; }
|
||
|
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 enum ApplyTags
|
||
|
{
|
||
|
Add,
|
||
|
Remove,
|
||
|
Replace
|
||
|
}
|
||
|
}
|