Move ApplyTags to own file
This commit is contained in:
parent
0d3e9a2196
commit
d1466ba589
|
@ -0,0 +1,9 @@
|
|||
namespace Sonarr.Api.V3
|
||||
{
|
||||
public enum ApplyTags
|
||||
{
|
||||
Add,
|
||||
Remove,
|
||||
Replace
|
||||
}
|
||||
}
|
|
@ -1,6 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
using NzbDrone.Core.ThingiProvider;
|
||||
using Sonarr.Api.V3.Series;
|
||||
|
||||
namespace Sonarr.Api.V3
|
||||
{
|
||||
|
|
|
@ -6,7 +6,6 @@ using Microsoft.AspNetCore.Mvc;
|
|||
using NzbDrone.Common.Serializer;
|
||||
using NzbDrone.Core.ThingiProvider;
|
||||
using NzbDrone.Core.Validation;
|
||||
using Sonarr.Api.V3.Series;
|
||||
using Sonarr.Http.REST;
|
||||
using Sonarr.Http.REST.Attributes;
|
||||
|
||||
|
|
|
@ -17,11 +17,4 @@ namespace Sonarr.Api.V3.Series
|
|||
public bool DeleteFiles { get; set; }
|
||||
public bool AddImportListExclusion { get; set; }
|
||||
}
|
||||
|
||||
public enum ApplyTags
|
||||
{
|
||||
Add,
|
||||
Remove,
|
||||
Replace
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue