1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-15 21:05:48 -04:00
Files
Radarr/src/Radarr.Api.V3/Config/NamingConfigResource.cs
2024-02-10 21:32:55 -06:00

15 lines
447 B
C#

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; }
}
}