Lidarr/src/NzbDrone.Core/Organizer/NamingConfig.cs

37 lines
1.6 KiB
C#
Raw Normal View History

using NzbDrone.Core.Datastore;
2013-04-25 04:27:49 +00:00
namespace NzbDrone.Core.Organizer
{
public class NamingConfig : ModelBase
{
2016-12-09 06:54:15 +00:00
public static NamingConfig Default => new NamingConfig
2013-04-25 04:27:49 +00:00
{
2016-12-09 06:54:15 +00:00
RenameEpisodes = false,
RenameTracks = false,
2016-12-09 06:54:15 +00:00
ReplaceIllegalCharacters = true,
MultiEpisodeStyle = 0,
StandardEpisodeFormat = "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Full}",
StandardTrackFormat = "{Artist Name} - {track:00} - {Album Title} - {Track Title}",
2016-12-09 06:54:15 +00:00
DailyEpisodeFormat = "{Series Title} - {Air-Date} - {Episode Title} {Quality Full}",
AnimeEpisodeFormat = "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Full}",
SeriesFolderFormat = "{Series Title}",
SeasonFolderFormat = "Season {season}",
ArtistFolderFormat = "{Artist Name}",
AlbumFolderFormat = "{Album Title} ({Release Year})"
2016-12-09 06:54:15 +00:00
};
2013-04-25 04:27:49 +00:00
2013-07-05 03:26:07 +00:00
public bool RenameEpisodes { get; set; }
public bool RenameTracks { get; set; }
public bool ReplaceIllegalCharacters { get; set; }
2013-04-25 04:27:49 +00:00
public int MultiEpisodeStyle { get; set; }
public string StandardEpisodeFormat { get; set; }
public string StandardTrackFormat { get; set; }
public string DailyEpisodeFormat { get; set; }
public string AnimeEpisodeFormat { get; set; }
public string SeriesFolderFormat { get; set; }
public string SeasonFolderFormat { get; set; }
public string ArtistFolderFormat { get; set; }
public string AlbumFolderFormat { get; set; }
2013-04-25 04:27:49 +00:00
}
}