using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Editors; namespace Tango.Editors { /// /// Represents a event arguments /// /// public class ElementsEditorUndoRedoExecutedEventArgs : UndoRedoStateExecutedEventArgs { /// /// Gets or sets the restored elements. /// public List RestoredElements { get; set; } /// /// Gets or sets the removed elements. /// public List RemovedElements { get; set; } /// /// Gets or sets the modified elements. /// public List ModifiedElements { get; set; } /// /// Initializes a new instance of the class. /// public ElementsEditorUndoRedoExecutedEventArgs() { RestoredElements = new List(); RemovedElements = new List(); ModifiedElements = new List(); } } }