sonarr-repo-only/src/NzbDrone.Core/Organizer/NamingConfig.cs

32 lines
1.2 KiB
C#
Raw Normal View History

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
{
RenameEpisodes = false,
2013-04-25 04:27:49 +00:00
MultiEpisodeStyle = 0,
2013-11-21 01:44:32 +00:00
StandardEpisodeFormat = "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Title}",
DailyEpisodeFormat = "{Series Title} - {Air-Date} - {Episode Title} {Quality Title}",
AnimeEpisodeFormat = "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Title}",
SeriesFolderFormat = "{Series Title}",
SeasonFolderFormat = "Season {season}"
2013-04-25 04:27:49 +00:00
};
}
}
2013-07-05 03:26:07 +00:00
public bool RenameEpisodes { get; set; }
2013-04-25 04:27:49 +00:00
public int MultiEpisodeStyle { get; set; }
public string StandardEpisodeFormat { get; set; }
public string DailyEpisodeFormat { get; set; }
public string AnimeEpisodeFormat { get; set; }
public string SeriesFolderFormat { get; set; }
public string SeasonFolderFormat { get; set; }
2013-04-25 04:27:49 +00:00
}
}