mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-09 09:23:46 +00:00
Move Dialog classes under UI namespace
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using Acr.UserDialogs;
|
||||
|
||||
namespace qController.UI.Dialogs
|
||||
{
|
||||
public class NoWorkspacesConfig : ConfirmConfig
|
||||
{
|
||||
public NoWorkspacesConfig(Action<bool> action)
|
||||
{
|
||||
Message = "QLab doesn't have any workspaces open?";
|
||||
OkText = "Disconnect";
|
||||
OnAction = action;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user