Add GraphViewModel functions realization

This commit is contained in:
Иван Ивашкин
2024-10-16 14:41:10 +05:00
parent 883dbb189f
commit d8f0d9dd88
16 changed files with 444 additions and 90 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Functions
{
public class GraphPoint
{
public double X { get; set; }
public double Y { get; set; }
}
}