roadie/Roadie.Api.Library/Configuration/IIntegrations.cs
2019-06-01 23:27:17 -05:00

20 lines
No EOL
685 B
C#

using System.Collections.Generic;
namespace Roadie.Library.Configuration
{
public interface IIntegrations
{
List<ApiKey> ApiKeys { get; set; }
string DiscogsConsumerKey { get; }
string DiscogsConsumerSecret { get; }
bool DiscogsProviderEnabled { get; set; }
short? DiscogsReadWriteTimeout { get; set; }
short? DiscogsTimeout { get; set; }
bool ITunesProviderEnabled { get; set; }
string LastFMApiKey { get; }
string LastFmApiSecret { get; }
bool LastFmProviderEnabled { get; set; }
bool MusicBrainzProviderEnabled { get; set; }
bool SpotifyProviderEnabled { get; set; }
}
}