Move the RollTimeout record to the shared commands project

This commit is contained in:
Daan Boerlage 2021-10-30 15:48:28 +02:00
parent dd941f5f94
commit 29e22acbc0
Signed by: daan
GPG key ID: FCE070E1E4956606
4 changed files with 11 additions and 18 deletions

View file

@ -0,0 +1,10 @@
using System;
namespace Geekbot.Commands.Roll
{
public record RollTimeout
{
public int LastGuess { get; set; }
public DateTime GuessedOn { get; set; }
}
}