17 lines
324 B
C#
17 lines
324 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace BlueWater.Items
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class CocktailIngredient
|
||
|
{
|
||
|
public string Idx { get; set; }
|
||
|
public int Ratio { get; set; }
|
||
|
|
||
|
public CocktailIngredient(string idx, int quantity)
|
||
|
{
|
||
|
Idx = idx;
|
||
|
Ratio = quantity;
|
||
|
}
|
||
|
}
|
||
|
}
|