12 lines
252 B
C#
12 lines
252 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace OakArchive.Models.TcgDex;
|
|
|
|
public class Legal
|
|
{
|
|
[JsonPropertyName("standard")]
|
|
public bool? Standard { get; set; }
|
|
|
|
[JsonPropertyName("expanded")]
|
|
public bool? Expanded { get; set; }
|
|
} |