namespace MultiTerm.Core.Model;
///
/// Represents an element of a history.
/// Required to have a common property to access.
/// Must also implement in order to clone the object before saving it to the history.
///
public interface IHistoryElement : ICloneable
{
///
/// Displayable text of this element.
///
string DisplayText { get; }
}