添加 WorkStationClient 客户端

This commit is contained in:
2025-06-29 19:58:44 +08:00
parent da3287813c
commit ad6b36018a
7 changed files with 97 additions and 0 deletions

View File

@ -0,0 +1,19 @@
using Prism.Mvvm;
namespace WorkStationClient.ViewModels
{
public class MainWindowViewModel : BindableBase
{
private string _title = "Prism Application";
public string Title
{
get { return _title; }
set { SetProperty(ref _title, value); }
}
public MainWindowViewModel()
{
}
}
}