mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
37 lines
540 B
C#
37 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public interface ISharpPath
|
|
{
|
|
string Path
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
double Width
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
double Height
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
PathStyle PathStyle
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
SizeStyle SizeStyle
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|