2013-04-25 04:27:49 +00:00
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Organizer
|
|
|
|
{
|
|
|
|
public class NamingConfig : ModelBase
|
|
|
|
{
|
|
|
|
public static NamingConfig Default
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return new NamingConfig
|
|
|
|
{
|
|
|
|
UseSceneName = false,
|
2013-05-31 01:56:27 +00:00
|
|
|
Separator = " - ",
|
2013-04-25 04:27:49 +00:00
|
|
|
NumberStyle = 0,
|
|
|
|
IncludeSeriesTitle = true,
|
|
|
|
MultiEpisodeStyle = 0,
|
|
|
|
IncludeEpisodeTitle = true,
|
|
|
|
IncludeQuality = true,
|
|
|
|
ReplaceSpaces = false,
|
|
|
|
SeasonFolderFormat = "Season %s"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool UseSceneName { 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; }
|
|
|
|
|
|
|
|
public string SeasonFolderFormat { get; set; }
|
|
|
|
}
|
|
|
|
}
|