mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
stuff we did :D
This commit is contained in:
parent
32701d5e84
commit
4cd75cd8aa
29 changed files with 648 additions and 479 deletions
44
NzbDrone.Core/Organizer/NamingConfig.cs
Normal file
44
NzbDrone.Core/Organizer/NamingConfig.cs
Normal file
|
@ -0,0 +1,44 @@
|
|||
using NzbDrone.Core.Datastore;
|
||||
|
||||
namespace NzbDrone.Core.Organizer
|
||||
{
|
||||
public class NamingConfig : ModelBase
|
||||
{
|
||||
public static NamingConfig Default
|
||||
{
|
||||
get
|
||||
{
|
||||
return new NamingConfig
|
||||
{
|
||||
UseSceneName = false,
|
||||
Separator = "-",
|
||||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue