You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Radarr/src/Radarr.Api.V3/Config/NamingConfigResource.cs

15 lines
447 B

using NzbDrone.Core.Organizer;
using Radarr.Http.REST;
namespace Radarr.Api.V3.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; }
}
}