using System; namespace DanieleMarotta.RiversongCodeShowcase { public interface ICancelAction { void AddHandler(int priority, Func cancelAction); } }