/*
In jurisdictions that recognize copyright waivers, I've waived all copyright
and related or neighboring rights for to this project. In areas where these
waivers are not recognized, BSD-3-Clause is enforced.
See the (UN)LICENSE file in the project root for more information.
*/
namespace Tomas.Kernel.Globalization;
public interface IUIText
{
///
/// The base directory for the language files.
///
string[] BasePath { get; set; }
///
/// Get the text for the given id and key.
///
/// The id of the text.
/// The key of the text.
/// The text for the given id and key.
string GetText(int id, int key);
}