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

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