using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Editors { /// /// Represents an undo/redo state. /// public interface IUndoRedoState { /// /// Gets or sets the undo/redo creation date time. /// DateTime Date { get; set; } } }