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

22 lines
427 B
C#

using System;
using AIStudio.Wpf.DiagramDesigner;
namespace AIStudio.Wpf.Logical
{
public class LinkPoint: BindableBase
{
public Guid Id { get; set; }
public string Name { get; set; }
private double _value;
public double Value
{
get { return _value; }
set
{
SetProperty(ref _value, value);
}
}
}
}