mirror of
https://codeberg.org/Ikatono/TierMaker.git
synced 2025-10-28 20:45:35 -05:00
9 lines
198 B
C#
9 lines
198 B
C#
using System.Text.Json.Serialization;
|
|
|
|
public class SerialGame
|
|
{
|
|
[JsonInclude]
|
|
public SerialRow[] Rows { get; set; }
|
|
[JsonInclude]
|
|
public SerialCard[] UnassignedCards { get; set; }
|
|
} |