using System; namespace RobotAndDonkey.Game.Execution.Results; public record RunPhaseResult(Guid RequestId, ERunPhase NewRunPhase) : Result(RequestId) { public override string ToString() { return $"Run phase result: {NewRunPhase}"; } }