Abhänigkeiten hinzugefügt und Services Klassen fertiggeschrieben

This commit is contained in:
NoKnownName
2025-05-23 11:41:45 +02:00
parent 80931f24f4
commit 2512929dd5
58 changed files with 809 additions and 423 deletions

View File

@@ -1,4 +1,5 @@
using System;
using Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -6,7 +7,10 @@ using System.Threading.Tasks;
namespace Services
{
internal interface IDiceService
public interface IDiceService
{
DiceResult RollDice(string diceNotation);
bool ValidateRoll(object roll);
List<DiceResult> GetRollHistory(string sessionID);
}
}