mirror of
https://github.com/sphildreth/roadie
synced 2024-11-27 06:30:21 +00:00
39 lines
No EOL
1.6 KiB
C#
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; }
|
|
}
|
|
} |