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

23 lines
895 B
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
{
RenameTracks = false,
2016-12-09 06:54:15 +00:00
ReplaceIllegalCharacters = true,
StandardTrackFormat = "{Album Title} ({Release Year})/{Artist Name} - {Album Title} - {track:00} - {Track Title}",
MultiDiscTrackFormat = "{Album Title} ({Release Year})/{Medium Format} {medium:00}/{Artist Name} - {Album Title} - {track:00} - {Track Title}",
ArtistFolderFormat = "{Artist Name}",
2016-12-09 06:54:15 +00:00
};
2013-04-25 04:27:49 +00:00
public bool RenameTracks { get; set; }
public bool ReplaceIllegalCharacters { get; set; }
public string StandardTrackFormat { get; set; }
public string MultiDiscTrackFormat { get; set; }
public string ArtistFolderFormat { get; set; }
2013-04-25 04:27:49 +00:00
}
}