Translation

This commit is contained in:
2025-07-31 15:02:46 +08:00
parent fd1c47196d
commit 6b1dda41bc
6 changed files with 70 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
namespace DysonNetwork.Sphere.Translation;
public interface ITranslationProvider
{
public Task<string> Translate(string text, string targetLanguage);
}