BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/TranslationMemoryDocument.cs

9 lines
313 B
C#
Raw Normal View History

2024-06-14 22:10:25 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
public class TranslationMemoryDocument : MongoBase
{
public string OriginalText { get; set; }
public string HashText { get; set; }
public List<TranslationMemoryMongoElement> Translations { get; set; } = new List<TranslationMemoryMongoElement>();
}