mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
17 lines
555 B
C#
17 lines
555 B
C#
|
using System;
|
||
|
using NzbDrone.Api.REST;
|
||
|
|
||
|
namespace NzbDrone.Api.Config
|
||
|
{
|
||
|
public class NamingConfigResource : RestResource
|
||
|
{
|
||
|
public Boolean IncludeEpisodeTitle { get; set; }
|
||
|
public Boolean ReplaceSpaces { get; set; }
|
||
|
public Boolean RenameEpisodes { get; set; }
|
||
|
public Int32 MultiEpisodeStyle { get; set; }
|
||
|
public Int32 NumberStyle { get; set; }
|
||
|
public String Separator { get; set; }
|
||
|
public Boolean IncludeQuality { get; set; }
|
||
|
public Boolean IncludeSeriesTitle { get; set; }
|
||
|
}
|
||
|
}
|