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

11 lines
311 B
C#

using RobotAndDonkey.Game.Cards;
namespace RobotAndDonkey.Game.Execution.Results;
public record TapeResult(Guid RequestId, IReadOnlyList<Card> Tape) : Result(RequestId)
{
public override string ToString()
{
return $"Tape result: {string.Join(", ", Tape.Select(c => c.ToString()))}";
}
}