You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Organizer
|
|
{
|
|
public class NamingConfig : ModelBase
|
|
{
|
|
public static NamingConfig Default
|
|
{
|
|
get
|
|
{
|
|
return new NamingConfig
|
|
{
|
|
RenameEpisodes = true,
|
|
Separator = " - ",
|
|
NumberStyle = 0,
|
|
IncludeSeriesTitle = true,
|
|
MultiEpisodeStyle = 0,
|
|
IncludeEpisodeTitle = true,
|
|
IncludeQuality = true,
|
|
ReplaceSpaces = false
|
|
};
|
|
}
|
|
}
|
|
|
|
public bool RenameEpisodes { get; set; }
|
|
|
|
public string Separator { get; set; }
|
|
|
|
public int NumberStyle { get; set; }
|
|
|
|
public bool IncludeSeriesTitle { get; set; }
|
|
|
|
public bool IncludeEpisodeTitle { get; set; }
|
|
|
|
public bool IncludeQuality { get; set; }
|
|
|
|
public int MultiEpisodeStyle { get; set; }
|
|
|
|
public bool ReplaceSpaces { get; set; }
|
|
}
|
|
} |