mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 22:20:21 +00:00
60 lines
No EOL
1.6 KiB
C#
60 lines
No EOL
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Roadie.Library.Configuration
|
|
{
|
|
[Serializable]
|
|
public class Processing : IProcessing
|
|
{
|
|
public string ArtistRemoveStringsRegex { get; set; }
|
|
|
|
public bool DoAudioCleanup { get; set; }
|
|
|
|
public bool DoClearComments { get; set; }
|
|
|
|
public bool DoDeleteUnknowns { get; set; }
|
|
|
|
public bool DoFolderArtistNameSet { get; set; }
|
|
|
|
public bool DoMoveUnknowns { get; set; }
|
|
|
|
public bool DoParseFromDiscogsDB { get; private set; }
|
|
|
|
public bool DoParseFromDiscogsDBFindingTrackForArtist { get; private set; }
|
|
|
|
public bool DoParseFromFileName { get; set; }
|
|
|
|
public bool DoParseFromLastFM { get; private set; }
|
|
|
|
public bool DoParseFromMusicBrainz { get; private set; }
|
|
|
|
public bool DoSaveEditsToTags { get; set; }
|
|
|
|
public int MaxImageWidth { get; set; }
|
|
|
|
public int MaximumArtistImagesToAdd { get; set; }
|
|
|
|
public int MaximumReleaseImagesToAdd { get; set; }
|
|
|
|
public string PostInspectScript { get; set; }
|
|
|
|
public string PreInspectScript { get; set; }
|
|
|
|
public string ReleaseRemoveStringsRegex { get; set; }
|
|
|
|
public string RemoveStringsRegex { get; set; }
|
|
|
|
public List<ReplacementString> ReplaceStrings { get; set; }
|
|
|
|
public string TrackRemoveStringsRegex { get; set; }
|
|
|
|
public string UnknownFolder { get; set; }
|
|
|
|
public Processing()
|
|
{
|
|
ReplaceStrings = new List<ReplacementString>();
|
|
DoAudioCleanup = true;
|
|
DoClearComments = true;
|
|
}
|
|
}
|
|
} |