using System.Collections.Generic; namespace QuikDawEditor.Undo; public abstract class UndoClass { public List parameters; public string UndoType { get { return this.GetType().ToString().Replace("SharedClasses.", ""); } } public bool IsLongUndoAction = false; public bool PreventWhilePlaying = false; public abstract void Undo(); }