namespace XUnity.AutoTranslator.Plugin.Core.Endpoints { /// /// Interface used in the context of translating a text. /// public interface ITranslationContext : ITranslationContextBase { /// /// Completes the translation by providing the translated text. /// /// void Complete( string translatedText ); /// /// Completes the translation by providing the translated texts. /// /// The indices of the translations must match the indices of the /// untranslated texts. /// /// void Complete( string[] translatedTexts ); } }