Correction to data format

This commit is contained in:
2021-10-26 01:18:48 -04:00
parent 7b73d23b9e
commit 6688f4cf29
2 changed files with 4 additions and 2 deletions

View File

@@ -1,8 +1,10 @@
using System.Collections.Generic;
namespace TOOHUCardAPI.Models
{
public class PlayerDataGetRequestObject
{
public string Method { get; set; }
public string[] Ids { get; set; }
public Dictionary<string, string> Ids;
}
}