BotSharp/src/Infrastructure/BotSharp.Abstraction/Translation/ITranslationService.cs

7 lines
216 B
C#
Raw Normal View History

2024-04-22 19:29:21 +00:00
namespace BotSharp.Abstraction.Translation;
public interface ITranslationService
{
2024-04-23 19:02:00 +00:00
Task<T> Translate<T>(Agent router, string messageId, T data, string language = "Spanish", bool clone = true) where T : class;
2024-04-22 19:29:21 +00:00
}