design-patterns/Strategy/Strategies/ICakeStrategy.cs

9 lines
166 B
C#
Raw Normal View History

2023-09-04 08:27:56 +00:00
using StrategyCake.Model;
namespace StrategyCake.Strategies;
public interface ICakeStrategy
{
List<Ingredient> GetIngredients();
List<string> GetMethod();
}