mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
18 lines
566 B
C#
18 lines
566 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NadekoBot.Core.Services
|
|
{
|
|
/// <summary>
|
|
/// Basic interface used for classes implementing strings loading mechanism
|
|
/// </summary>
|
|
public interface IStringsSource
|
|
{
|
|
/// <summary>
|
|
/// Gets all response strings
|
|
/// </summary>
|
|
/// <returns>Dictionary(localename, Dictionary(key, response))</returns>
|
|
Dictionary<string, Dictionary<string, string>> GetResponseStrings();
|
|
|
|
Dictionary<string, Dictionary<string, CommandStrings>> GetCommandStrings();
|
|
}
|
|
} |