2013-04-24 21:27:49 -07:00
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Organizer
|
|
|
|
{
|
|
|
|
public class NamingConfig : ModelBase
|
|
|
|
{
|
|
|
|
public static NamingConfig Default
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return new NamingConfig
|
|
|
|
{
|
2013-07-04 20:26:07 -07:00
|
|
|
RenameEpisodes = true,
|
2013-05-30 18:56:27 -07:00
|
|
|
Separator = " - ",
|
2013-04-24 21:27:49 -07:00
|
|
|
NumberStyle = 0,
|
|
|
|
IncludeSeriesTitle = true,
|
|
|
|
MultiEpisodeStyle = 0,
|
|
|
|
IncludeEpisodeTitle = true,
|
|
|
|
IncludeQuality = true,
|
2013-07-04 22:25:03 -07:00
|
|
|
ReplaceSpaces = false
|
2013-04-24 21:27:49 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-04 20:26:07 -07:00
|
|
|
public bool RenameEpisodes { get; set; }
|
2013-04-24 21:27:49 -07:00
|
|
|
|
|
|
|
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; }
|
|
|
|
}
|
|
|
|
}
|