Public Access
22 lines
552 B
C#
22 lines
552 B
C#
namespace MeetingAssistant.Workflow;
|
|
|
|
public interface IWorkflowRulesEditorWindowService
|
|
{
|
|
void Show();
|
|
}
|
|
|
|
public sealed class NoopWorkflowRulesEditorWindowService : IWorkflowRulesEditorWindowService
|
|
{
|
|
private readonly ILogger<NoopWorkflowRulesEditorWindowService> logger;
|
|
|
|
public NoopWorkflowRulesEditorWindowService(ILogger<NoopWorkflowRulesEditorWindowService> logger)
|
|
{
|
|
this.logger = logger;
|
|
}
|
|
|
|
public void Show()
|
|
{
|
|
logger.LogInformation("Workflow rules editor UI is only available on Windows");
|
|
}
|
|
}
|