9 lines
No EOL
166 B
C#
9 lines
No EOL
166 B
C#
using StrategyCake.Model;
|
|
|
|
namespace StrategyCake.Strategies;
|
|
|
|
public interface ICakeStrategy
|
|
{
|
|
List<Ingredient> GetIngredients();
|
|
List<string> GetMethod();
|
|
} |