mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
192d001b61
Closes #809
23 lines
876 B
C#
23 lines
876 B
C#
using System;
|
|
using NzbDrone.Api.REST;
|
|
|
|
namespace NzbDrone.Api.Config
|
|
{
|
|
public class NamingConfigResource : RestResource
|
|
{
|
|
public bool RenameEpisodes { get; set; }
|
|
public bool ReplaceIllegalCharacters { get; set; }
|
|
public int MultiEpisodeStyle { get; set; }
|
|
public string StandardEpisodeFormat { get; set; }
|
|
public string DailyEpisodeFormat { get; set; }
|
|
public string AnimeEpisodeFormat { get; set; }
|
|
public string SeriesFolderFormat { get; set; }
|
|
public string SeasonFolderFormat { get; set; }
|
|
public bool IncludeSeriesTitle { get; set; }
|
|
public bool IncludeEpisodeTitle { get; set; }
|
|
public bool IncludeQuality { get; set; }
|
|
public bool ReplaceSpaces { get; set; }
|
|
public string Separator { get; set; }
|
|
public string NumberStyle { get; set; }
|
|
}
|
|
} |