mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
25 lines
412 B
C#
25 lines
412 B
C#
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;
|
|
}
|
|
}
|
|
}
|