namespace SharedLibraryCore.Interfaces { /// /// Defines the translation lookup capabilities for DI /// public interface ITranslationLookup { /// /// Allows indexing /// /// translation lookup key /// string this[string key] { get; } } }