using System; using System.Collections.Generic; namespace KGdev.BI3D.Revit.Common { public interface IReduxReducer { event EventHandler> OnStateChanged; void Reduce(Dictionary action); } }