IW4M-Admin/SharedLibraryCore/Interfaces/ITranslationLookup.cs

15 lines
408 B
C#
Raw Permalink Normal View History

namespace SharedLibraryCore.Interfaces
{
/// <summary>
2022-01-26 11:32:16 -05:00
/// Defines the translation lookup capabilities for DI
/// </summary>
public interface ITranslationLookup
{
/// <summary>
2022-01-26 11:32:16 -05:00
/// Allows indexing
/// </summary>
/// <param name="key">translation lookup key</param>
/// <returns></returns>
string this[string key] { get; }
}
2022-01-26 11:32:16 -05:00
}