NadekoBot/src/NadekoBot/Services/IBotCredentials.cs

11 lines
186 B
C#
Raw Normal View History

2016-08-16 14:53:38 +00:00
namespace NadekoBot.Services
2016-08-15 23:38:28 +00:00
{
public interface IBotCredentials
{
2016-08-16 14:53:38 +00:00
string ClientId { get; }
2016-08-15 23:38:28 +00:00
string Token { get; }
string GoogleApiKey { get; }
2016-08-16 14:53:38 +00:00
2016-08-15 23:38:28 +00:00
}
}