Modification Smash

Ajout Ecran Layout XSB
This commit is contained in:
2022-05-18 22:47:28 +02:00
parent 0150402ca6
commit 092f9868a1
14 changed files with 326 additions and 15 deletions

View File

@@ -305,5 +305,13 @@ namespace LaDOSE.REST
var restResponse = Client.Get<List<EventDTO>>(restRequest);
return restResponse.Data;
}
public List<string> GetPlayers(string slug)
{
CheckToken();
var restRequest = new RestRequest($"/api/Tournament/GetPLayers/{slug}", Method.GET);
var restResponse = Client.Get<List<string>>(restRequest);
return restResponse.Data;
}
}
}