12 lines
317 B
C#
12 lines
317 B
C#
using VisionBuilder.UI.Common.ViewModel.Interfaces.UI;
|
|
|
|
namespace VisionBuilder.UI.Common.NullClasses;
|
|
|
|
public class NoRecipeCreation: IRecipeCreationTool
|
|
{
|
|
public bool Enabled { get; set; } = false;
|
|
public bool CreateRecipe(out string recipeName)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |