I find myself using the pattern of ``` var EndStates = new[]{ state1, state2, ... ect} for(var state in EndStates) c.From(CommonStart).To(state); ``` way too often. I should be able to pass in the end states instead.