7 lines
194 B
C#
7 lines
194 B
C#
namespace VisionBuilder.UI.Common.ViewModel.Interfaces.UI;
|
|
|
|
public interface IRecipeCreationTool
|
|
{
|
|
public bool Enabled { get; set; }
|
|
public bool CreateRecipe(out string recipeName);
|
|
} |