BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/TranslationMemoryDocument.cs
2024-06-14 17:10:25 -05:00

9 lines
313 B
C#

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>();
}