6 lines
156 B
C#
6 lines
156 B
C#
namespace DysonNetwork.Sphere.Translation;
|
|
|
|
public interface ITranslationProvider
|
|
{
|
|
public Task<string> Translate(string text, string targetLanguage);
|
|
} |