mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
15 lines
408 B
C#
15 lines
408 B
C#
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Defines the translation lookup capabilities for DI
|
|
/// </summary>
|
|
public interface ITranslationLookup
|
|
{
|
|
/// <summary>
|
|
/// Allows indexing
|
|
/// </summary>
|
|
/// <param name="key">translation lookup key</param>
|
|
/// <returns></returns>
|
|
string this[string key] { get; }
|
|
}
|
|
} |