All checks were successful
Merging on main / Build & Test (push) Successful in 1m10s
Co-authored-by: mcmuzzle <vezuvan@hotmail.com> Reviewed-on: #40
14 lines
289 B
C#
14 lines
289 B
C#
using LittleTown.Core;
|
|
|
|
namespace LittleTown.Blazor.Client.Services
|
|
{
|
|
public interface IMatchService
|
|
{
|
|
/// <summary>
|
|
/// Temporaire, recupere l'instance d'un match par défaut
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Match GetMatch();
|
|
}
|
|
}
|