Remove .Common-project
Currently of no use
This commit is contained in:
parent
232231d20d
commit
b1d3ec73c9
31 changed files with 16020 additions and 109 deletions
|
|
@ -7,9 +7,13 @@ namespace InkForge.Desktop.ViewModels;
|
|||
public class WorkspaceViewModel : ReactiveObject
|
||||
{
|
||||
private readonly Workspace _workspace;
|
||||
private readonly ObservableAsPropertyHelper<string> _workspaceNameProperty;
|
||||
|
||||
public string WorkspaceName => _workspaceNameProperty.Value;
|
||||
|
||||
public WorkspaceViewModel(Workspace workspace)
|
||||
{
|
||||
_workspace = workspace;
|
||||
_workspaceNameProperty = this.WhenAnyValue(v => v._workspace.Name).ToProperty(this, nameof(WorkspaceName));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue