2017-08-26 02:00:14 +00:00
|
|
|
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
|
|
|
{
|
2017-06-19 02:16:39 +00:00
|
|
|
RenameTracks = false,
|
2016-12-09 06:54:15 +00:00
|
|
|
ReplaceIllegalCharacters = true,
|
2018-04-02 01:07:33 +00:00
|
|
|
StandardTrackFormat = "{Artist Name} - {Album Title} - {track:00} - {Track Title}",
|
2019-07-30 02:32:25 +00:00
|
|
|
MultiDiscTrackFormat = "{Medium Format} {medium:00}/{Artist Name} - {Album Title} - {track:00} - {Track Title}",
|
2017-04-30 21:54:01 +00:00
|
|
|
ArtistFolderFormat = "{Artist Name}",
|
2017-06-19 02:16:39 +00:00
|
|
|
AlbumFolderFormat = "{Album Title} ({Release Year})"
|
2016-12-09 06:54:15 +00:00
|
|
|
};
|
2013-04-25 04:27:49 +00:00
|
|
|
|
2017-06-19 02:16:39 +00:00
|
|
|
public bool RenameTracks { get; set; }
|
2015-10-04 20:13:14 +00:00
|
|
|
public bool ReplaceIllegalCharacters { get; set; }
|
2017-06-19 02:16:39 +00:00
|
|
|
public string StandardTrackFormat { get; set; }
|
2019-07-30 02:32:25 +00:00
|
|
|
public string MultiDiscTrackFormat { get; set; }
|
2017-04-30 21:54:01 +00:00
|
|
|
public string ArtistFolderFormat { get; set; }
|
|
|
|
public string AlbumFolderFormat { get; set; }
|
2013-04-25 04:27:49 +00:00
|
|
|
}
|
2015-10-04 20:13:14 +00:00
|
|
|
}
|