BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Repository/MongoRepository.Translation.cs

15 lines
408 B
C#
Raw Normal View History

2024-06-14 20:39:56 +00:00
namespace BotSharp.Plugin.MongoStorage.Repository;
public partial class MongoRepository
{
public IEnumerable<TranslationMemoryOutput> GetTranslationMemories(IEnumerable<TranslationMemoryQuery> queries)
{
throw new NotImplementedException();
}
public bool SaveTranslationMemories(IEnumerable<TranslationMemoryInput> inputs)
{
throw new NotImplementedException();
}
}