Added endpoint handling there

This commit is contained in:
2021-10-25 14:43:56 -04:00
parent e2238ae982
commit 58881e5ad6
4 changed files with 64 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
namespace TOOHUCardAPI.Models
{
public class PlayerDataRequestObject
{
public string Method { get; set; }
public string[] Ids { get; set; }
}
}

View File

@@ -4,7 +4,7 @@ namespace TOOHUCardAPI.Models
* Fields pulled from the game code
* Looking up Gamerules.Playerdata
*/
public class PlayerDataResponsePlayerObject
public class PlayerDataGetResponseObject
{
public string Code { get; set; }