using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Editors
{
///
/// Represents the event arguments.
///
///
public class UndoRedoStateExecutedEventArgs : EventArgs
{
///
/// Gets or sets the event arguments mode.
///
public UndoRedoStateMode Mode { get; set; }
///
/// Gets or sets the Undo/Redo state.
///
public IUndoRedoState State { get; set; }
}
///
/// Represents the mode.
///
public enum UndoRedoStateMode
{
///
/// Undo was executed.
///
Undo,
///
/// Redo was executed.
///
Redo,
}
}