Files
aistudio-wpf-diagram/Extensions/AIStudio.Wpf.Logical/LogicalService.cs

21 lines
480 B
C#
Raw Normal View History

2021-07-23 09:42:22 +08:00
using System;
using System.Collections.Generic;
2021-07-29 13:55:18 +08:00
namespace AIStudio.Wpf.Logical
2021-07-23 09:42:22 +08:00
{
public static class LogicalService
{
public static List<LinkPoint> LinkPoint { get; set; }
static LogicalService()
{
LinkPoint = new List<LinkPoint>();
for (int i = 0; i < 10; i++)
{
LinkPoint.Add(new Logical.LinkPoint { Id = Guid.NewGuid(), Name = $"测点{i}", Value = i });
}
}
}
}