Files
API/TOOHUCardAPI/DTO/PlayerDataRequestObjects.cs
2021-10-28 17:03:15 -04:00

10 lines
211 B
C#

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