mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-04 15:07:55 +00:00
16 lines
344 B
C#
16 lines
344 B
C#
using System;
|
|
using Acr.UserDialogs;
|
|
|
|
namespace qController.Dialogs
|
|
{
|
|
public class NoWorkspacesConfig : ConfirmConfig
|
|
{
|
|
public NoWorkspacesConfig(Action<bool> action)
|
|
{
|
|
Message = "QLab doesn't have any workspaces open?";
|
|
OkText = "Disconnect";
|
|
OnAction = action;
|
|
}
|
|
}
|
|
}
|