roadie/RoadieLibrary/Configuration/IRoadieSettings.cs
Steven Hildreth a8da9627e1 WIP
2018-11-11 18:28:37 -06:00

39 lines
No EOL
1.6 KiB
C#

using System.Collections.Generic;
namespace Roadie.Library.Configuration
{
public interface IRoadieSettings
{
string ConnectionString { get; set; }
string ContentPath { get; set; }
Dictionary<string, List<string>> ArtistNameReplace { get; set; }
Converting Converting { get; set; }
string DefaultTimeZone { get; set; }
string DiagnosticsPassword { get; set; }
IEnumerable<string> DontDoMetaDataProvidersSearchArtists { get; set; }
IEnumerable<string> FileExtensionsToDelete { get; set; }
FilePlugins FilePlugins { get; set; }
string InboundFolder { get; set; }
Integrations Integrations { get; set; }
Thumbnails LargeThumbnails { get; set; }
string LibraryFolder { get; set; }
string ListenAddress { get; set; }
Thumbnails MediumThumbnails { get; set; }
Processing Processing { get; set; }
bool RecordNoResultSearches { get; set; }
RedisCache Redis { get; set; }
string SecretKey { get; set; }
string SingleArtistHoldingFolder { get; set; }
string SiteName { get; set; }
string SmtpFromAddress { get; set; }
string SmtpHost { get; set; }
string SmtpPassword { get; set; }
int SmtpPort { get; set; }
string SmtpUsername { get; set; }
bool SmtpUseSSl { get; set; }
Thumbnails Thumbnails { get; set; }
Dictionary<string, string> TrackPathReplace { get; set; }
bool UseSSLBehindProxy { get; set; }
string WebsocketAddress { get; set; }
}
}