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