Notes
This commit is contained in:
parent
4c2b5cca93
commit
43b4d50e43
28 changed files with 674 additions and 249 deletions
|
|
@ -4,15 +4,20 @@ using Microsoft.Extensions.DependencyInjection;
|
|||
|
||||
namespace InkForge.Desktop.ViewModels.Workspaces
|
||||
{
|
||||
public class WorkspaceViewModel(Workspace workspace)
|
||||
public class WorkspaceViewModel
|
||||
{
|
||||
// private readonly Workspace _workspace;
|
||||
private readonly NoteStore _noteStore;
|
||||
// private readonly ObservableAsPropertyHelper<string> _workspaceNameProperty;
|
||||
|
||||
// public string WorkspaceName => _workspaceNameProperty.Value;
|
||||
|
||||
// public ReactiveCommand<Unit, Unit> AddDocument { get; }
|
||||
|
||||
public WorkspaceViewModel(NoteStore noteStore)
|
||||
{
|
||||
_noteStore = noteStore;
|
||||
}
|
||||
|
||||
// public WorkspacesViewModel(Workspace workspace)
|
||||
// {
|
||||
// _workspace = workspace;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue