7 lines
187 B
C#
7 lines
187 B
C#
namespace VisionBuilder.UI.Common.ViewModel.Interfaces.UI;
|
|
|
|
public interface IRecipeCreationTool
|
|
{
|
|
public bool Enabled { get; set; }
|
|
public Task<string?> CreateRecipeAsync();
|
|
} |