Files
API/TOOHUCardAPI/Models/PlayerDataRequestObjects.cs
2021-10-26 01:18:48 -04:00

10 lines
214 B
C#

using System.Collections.Generic;
namespace TOOHUCardAPI.Models
{
public class PlayerDataGetRequestObject
{
public string Method { get; set; }
public Dictionary<string, string> Ids;
}
}