BotSharp/src/Infrastructure/BotSharp.Abstraction/Translation/ITranslationService.cs
2024-04-23 14:02:00 -05:00

7 lines
216 B
C#

namespace BotSharp.Abstraction.Translation;
public interface ITranslationService
{
Task<T> Translate<T>(Agent router, string messageId, T data, string language = "Spanish", bool clone = true) where T : class;
}