InkForge/app/InkForge.Desktop/Views/Workspaces/WorkspaceView.axaml.cs
2024-03-17 22:27:01 +01:00

13 lines
257 B
C#

using Avalonia.ReactiveUI;
using InkForge.Desktop.ViewModels.Workspaces;
namespace InkForge.Desktop.Views.Workspaces;
public partial class WorkspaceView : ReactiveUserControl<WorkspaceViewModel>
{
public WorkspaceView()
{
InitializeComponent();
}
}