using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Editors; namespace Tango.Editors { /// /// Represents an undo/redo state. /// /// public class ElementsEditorUndoRedoState : IUndoRedoState { /// /// Initializes a new instance of the class. /// public ElementsEditorUndoRedoState() { ElementsSetups = new List>>(); } /// /// Gets or sets the animation setups which will determine the configuration. /// public List>> ElementsSetups { get; set; } /// /// Gets or sets the undo/redo creation date time. /// public DateTime Date { get; set; } } }