Files
aistudio-wpf-diagram/AIStudio.Wpf.BaseDiagram/Models/TitleBindableBase.cs
2021-07-29 13:55:18 +08:00

26 lines
502 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Util.DiagramDesigner;
namespace AIStudio.Wpf.BaseDiagram.Models
{
public class TitleBindableBase : BindableBase
{
private string _title;
public string Title
{
get
{
return _title;
}
set
{
SetProperty(ref _title, value);
}
}
}
}