mirror of
https://github.com/Wincent01/InfectedRose.git
synced 2025-12-16 17:49:50 -06:00
11 lines
236 B
C#
11 lines
236 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace InfectedRose.Interface
|
|
{
|
|
public class Lookup
|
|
{
|
|
[JsonPropertyName("ids")]
|
|
public Dictionary<string, int> Ids { get; set; }
|
|
}
|
|
} |