Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramHelper/Models/TitleBindableBase.cs
2022-10-28 22:45:39 +08:00

26 lines
512 B
C#

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