11 lines
260 B
C#
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}";
|
|
}
|
|
} |