mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-03 06:27:55 +00:00
6818a14940
* QCueGridListHelper.cs: Helper class for linking cue id with cue grid * QCueViewModel.cs: Revoe unused import * QBrowserPage.xaml.cs: * ControlPage.xaml.cs: * QWorkspaceViewModel.cs: * qConnectionPage.xaml.cs: Remove unused import * QWorkspacePage.xaml.cs: Fix scrolling to select cue and handle no selected cue
41 lines
693 B
C#
41 lines
693 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using QControlKit;
|
|
using Xamarin.Forms;
|
|
|
|
namespace qController.ViewModels
|
|
{
|
|
public class QWorkspaceViewModel
|
|
{
|
|
public QWorkspace workspace;
|
|
public QWorkspaceViewModel(QWorkspace workspace)
|
|
{
|
|
this.workspace = workspace;
|
|
}
|
|
|
|
public string Name
|
|
{
|
|
get
|
|
{
|
|
return workspace.name;
|
|
}
|
|
set
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
public bool HasPasscode
|
|
{
|
|
get
|
|
{
|
|
return workspace.hasPasscode;
|
|
}
|
|
set
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|