Files
zfxaction25/RobotAndDonkey.Game/Execution/Results/RunPhaseResult.cs
2026-04-19 00:43:27 +02:00

11 lines
260 B
C#

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}";
}
}