13 lines
359 B
C#
13 lines
359 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using RobotAndDonkey.Game.Cards;
|
|
|
|
namespace RobotAndDonkey.Game.Execution.Results;
|
|
|
|
public record DeckResult(Guid RequestId, IReadOnlyList<Card> Deck) : Result(RequestId)
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return $"Deck result: {string.Join(", ", Deck.Select(c => c.ToString()))}";
|
|
}
|
|
} |