10 lines
211 B
C#
10 lines
211 B
C#
using System.Text.Json.Serialization;
|
|
using Godot;
|
|
|
|
public class Ingredient
|
|
{
|
|
[JsonPropertyName("item")]
|
|
public string Item {get; set;}
|
|
[JsonPropertyName("amount")]
|
|
public int Amount {get;set;}
|
|
} |