18 lines
392 B
C#
18 lines
392 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace OakArchive.Models.TcgDex;
|
|
|
|
public class Attack
|
|
{
|
|
[JsonPropertyName("cost")]
|
|
public List<string>? Cost { get; set; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string? Name { get; set; }
|
|
|
|
[JsonPropertyName("effect")]
|
|
public string? Effect { get; set; }
|
|
|
|
[JsonPropertyName("damage")]
|
|
public int? Damage { get; set; }
|
|
} |