11 lines
248 B
C#
11 lines
248 B
C#
using System;
|
|
|
|
namespace RobotAndDonkey.Game.Execution.Results;
|
|
|
|
public record NoMoreBufferOverflowResult(Guid RequestId) : Result(RequestId)
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return $"No more buffer overflow result";
|
|
}
|
|
} |