mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-05 13:21:25 -05:00
19 lines
638 B
C#
19 lines
638 B
C#
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; }
|
|
}
|
|
}
|