Files
meeting-assistant/MeetingAssistant/Workflow/IWorkflowRulesEditorWindowService.cs
T
codex 693f52afee
PR and Push Build/Test / build-and-test (push) Successful in 7m0s
Add tray rules and identities editor
2026-05-28 01:28:16 +02:00

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");
}
}