Files
Swarm/DysonNetwork.Sphere/Translation/ITranslationProvider.cs
2025-07-31 15:02:46 +08:00

6 lines
156 B
C#

namespace DysonNetwork.Sphere.Translation;
public interface ITranslationProvider
{
public Task<string> Translate(string text, string targetLanguage);
}