using System.Collections.Generic;
namespace NadekoBot.Core.Services
{
///
/// Basic interface used for classes implementing strings loading mechanism
///
public interface IStringsSource
{
///
/// Gets all response strings
///
/// Dictionary(localename, Dictionary(key, response))
Dictionary> GetResponseStrings();
Dictionary> GetCommandStrings();
}
}