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

23 lines
770 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 = "{Artist Name} - {Album Title} - {track:00} - {Track Title}",
ArtistFolderFormat = "{Artist Name}",
AlbumFolderFormat = "{Album Title} ({Release Year})"
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 ArtistFolderFormat { get; set; }
public string AlbumFolderFormat { get; set; }
2013-04-25 04:27:49 +00:00
}
}