Radarr/src/Radarr.Api.V3/Config/NamingConfigResource.cs

15 lines
447 B
C#
Raw Normal View History

2018-11-23 07:03:32 +00:00
using NzbDrone.Core.Organizer;
2019-12-22 22:08:53 +00:00
using Radarr.Http.REST;
2018-11-23 07:03:32 +00:00
namespace Radarr.Api.V3.Config
2018-11-23 07:03:32 +00:00
{
public class NamingConfigResource : RestResource
{
2019-07-13 03:15:13 +00:00
public bool RenameMovies { get; set; }
2018-11-23 07:03:32 +00:00
public bool ReplaceIllegalCharacters { get; set; }
public ColonReplacementFormat ColonReplacementFormat { get; set; }
public string StandardMovieFormat { get; set; }
public string MovieFolderFormat { get; set; }
}
2019-12-22 21:24:10 +00:00
}