This commit is contained in:
艾竹
2023-04-22 12:41:15 +08:00
parent f8340b5885
commit 87f31fa79d
148 changed files with 19 additions and 14 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace AIStudio.Wpf.DiagramDesigner.Demo.ViewModels
{
class BaseViewModel : BindableBase
{
public DiagramViewModel DiagramViewModel
{
get; set;
}
public string Title
{
get;set;
}
public string Info
{
get; set;
}
}
}