Fix: return graph from player to independent button, develop: add MainGraphView, TreeView, TreeCommand.

This commit is contained in:
Иван Ивашкин
2024-10-14 20:36:25 +05:00
parent b5ed00341c
commit 883dbb189f
17 changed files with 440 additions and 21 deletions

View File

@@ -10,8 +10,10 @@ namespace StructureHelperCommon.Models.Functions
{
public class FormulaFunction : IOneVariableFunction
{
public bool IsUser { get; set; }
public FunctionType Type { get; set; }
public string Name { get; set; }
public string Description { get ; set; }
public bool Check()
{
@@ -25,8 +27,10 @@ namespace StructureHelperCommon.Models.Functions
public class CopyOfFormulaFunction : IOneVariableFunction
{
public bool IsUser { get; set; }
public FunctionType Type { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public bool Check()
{