design-patterns/Strategy/Model/Ingredient.cs
2023-09-04 09:27:56 +01:00

15 lines
No EOL
309 B
C#

namespace StrategyCake.Model;
public class Ingredient
{
public Ingredient(decimal quantity, string unit, string item)
{
Quantity = quantity;
Unit = unit;
Item = item;
}
public decimal Quantity { get; }
public string Unit { get; }
public string Item { get; }
}