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