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