Files
aistudio-wpf-diagram/AIStudio.Wpf.BaseDiagram/Models/TitleBindableBase.cs

26 lines
502 B
C#
Raw Normal View History

2021-07-23 09:42:22 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Util.DiagramDesigner;
2021-07-29 13:55:18 +08:00
namespace AIStudio.Wpf.BaseDiagram.Models
2021-07-23 09:42:22 +08:00
{
public class TitleBindableBase : BindableBase
{
private string _title;
public string Title
{
get
{
return _title;
}
set
{
SetProperty(ref _title, value);
}
}
}
}