using Beam.Models; namespace Beam.Abstractions; /// /// Defines how a url template should should be updated, in what order, and by how much /// public interface IStateChangeBehaviour { public void Apply(IState state, object stimulus); }