Clock/ViewModels/IDispatcher.cs (8 lines of code) (raw):

namespace Clock.ViewModels { using System; // ReSharper disable once InconsistentNaming public interface IDispatcher { void Dispatch(Action action); } }