7 lines
132 B
C#
7 lines
132 B
C#
|
|
namespace s8n_runtime.ViewModels;
|
||
|
|
|
||
|
|
public struct WorkflowPoint
|
||
|
|
{
|
||
|
|
public float X { get; set; }
|
||
|
|
public float Y { get; set; }
|
||
|
|
}
|