1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

New: v4 API (DROP v3 AFTER TESTING PERIOD)

This commit is contained in:
Qstick
2022-09-10 14:53:35 -05:00
parent 5b2f30227b
commit 5dc3726023
167 changed files with 21718 additions and 58 deletions
@@ -0,0 +1,18 @@
using NzbDrone.Core.Organizer;
using Radarr.Http.REST;
namespace Radarr.Api.V4.Config
{
public class NamingConfigResource : RestResource
{
public bool RenameMovies { get; set; }
public bool ReplaceIllegalCharacters { get; set; }
public ColonReplacementFormat ColonReplacementFormat { get; set; }
public string StandardMovieFormat { get; set; }
public string MovieFolderFormat { get; set; }
public bool IncludeQuality { get; set; }
public bool ReplaceSpaces { get; set; }
public string Separator { get; set; }
public string NumberStyle { get; set; }
}
}