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

@ -3,6 +3,7 @@ using System.Linq;
using System.Threading.Tasks;
using Discord.Commands;
using Geekbot.Bot.Utils;
using Geekbot.Commands.Roll;
using Geekbot.Core;
using Geekbot.Core.Database;
using Geekbot.Core.Database.Models;

View file

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

View file

@ -1,5 +1,6 @@
using System;
using System.Threading.Tasks;
using Geekbot.Commands.Roll;
using Geekbot.Core.Database;
using Geekbot.Core.Interactions;
using Geekbot.Core.Interactions.ApplicationCommand;

View file

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