Cleaned up project with better structure.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
public class Ingredient
|
||||
{
|
||||
[JsonPropertyName("item")]
|
||||
public string Item { get; set; }
|
||||
|
||||
[JsonPropertyName("amount")]
|
||||
public int Amount { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user