17 lines
308 B
C#
17 lines
308 B
C#
|
using System;
|
||
|
|
||
|
namespace BlueWater.Items
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class Ingredient
|
||
|
{
|
||
|
public int Idx { get; set; }
|
||
|
public int Quantity { get; set; }
|
||
|
|
||
|
public Ingredient(int idx, int quantity)
|
||
|
{
|
||
|
Idx = idx;
|
||
|
Quantity = quantity;
|
||
|
}
|
||
|
}
|
||
|
}
|