Files
qController/qController.Standard/Classes/Dialogs/NoWorkspacesConfig.cs
T
jwetzell fe8bd257d1 Switch to only TCP Communication
- No more UDP
- Lots of random refactoring as well
2020-06-06 12:12:23 -05:00

15 lines
294 B
C#

using System;
using Acr.UserDialogs;
namespace qController.Dialogs
{
public class NoWorkspacesConfig : ConfirmConfig
{
public NoWorkspacesConfig()
{
Message = "QLab doesn't have any workspaces open?";
OkText = "Disconnect";
}
}
}