NadekoBot/src/NadekoBot/Services/Impl/BotCredentials.cs

26 lines
477 B
C#
Raw Normal View History

2016-08-15 23:38:28 +00:00
using System;
using System.Collections.Generic;
namespace NadekoBot.Services.Impl
{
2016-08-18 15:33:45 +00:00
//todo load creds
2016-08-15 23:38:28 +00:00
public class BotCredentials : IBotCredentials
{
2016-08-16 14:53:38 +00:00
public string ClientId { get; }
2016-08-15 23:38:28 +00:00
public string GoogleApiKey {
get {
2016-08-18 15:33:45 +00:00
return "";
2016-08-15 23:38:28 +00:00
}
}
2016-08-16 14:53:38 +00:00
public IEnumerable<string> MashapeKey { get; }
2016-08-15 23:38:28 +00:00
public string Token {
get {
2016-08-18 15:33:45 +00:00
return "";
2016-08-15 23:38:28 +00:00
}
}
}
}