10 lines
214 B
C#
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;
|
|
}
|
|
} |