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