Add graph application

This commit is contained in:
Иван Ивашкин
2024-10-06 18:53:47 +05:00
parent c10d6eb94e
commit ccc9513416
10 changed files with 174 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
using StructureHelperLogics.Models.CrossSections;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.Graphs
{
internal class Graph : IGraph
{
public Guid Id { get; private set; }
public Graph()
{
}
public object Clone()
{
throw new NotImplementedException();
}
}
}