12 lines
245 B
C#
12 lines
245 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace OakArchive.Models.TcgDex;
|
|
|
|
public class Weakness
|
|
{
|
|
[JsonPropertyName("type")]
|
|
public string? Type { get; set; }
|
|
|
|
[JsonPropertyName("value")]
|
|
public string? Value { get; set; }
|
|
} |