2024-07-15 16:20:39 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace BlueWater.Items
|
|
|
|
{
|
|
|
|
[Serializable]
|
|
|
|
public class Ingredient
|
|
|
|
{
|
2024-08-22 10:39:15 +00:00
|
|
|
public string Idx { get; set; }
|
2024-07-15 16:20:39 +00:00
|
|
|
public int Quantity { get; set; }
|
|
|
|
|
2024-08-22 10:39:15 +00:00
|
|
|
public Ingredient(string idx, int quantity)
|
2024-07-15 16:20:39 +00:00
|
|
|
{
|
|
|
|
Idx = idx;
|
|
|
|
Quantity = quantity;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|