9 lines
313 B
C#
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>();
|
|
}
|