namespace MultiTerm.Core.Model; /// /// Generic history element, which allows to use a string as history element. /// public class StringHistoryElement : IHistoryElement, ICloneable { public string Text { get; } public string DisplayText => this.Text; public StringHistoryElement(string text) { Text = text; } #region ICloneable implementation public object Clone() { return this.MemberwiseClone(); } #endregion }