Tree graph commands in process

This commit is contained in:
Иван Ивашкин
2024-10-17 13:15:30 +05:00
parent d8f0d9dd88
commit 88ac95af2f
20 changed files with 614 additions and 30 deletions

View File

@@ -1,6 +1,7 @@
using StructureHelperCommon.Infrastructures.Enums;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

View File

@@ -3,6 +3,7 @@ using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -11,14 +12,24 @@ namespace StructureHelperCommon.Models.Functions
{
public class TableFunction : IOneVariableFunction
{
private string name;
public bool IsUser { get; set; }
public FunctionType Type { get; set; }
public string Name { get; set; }
public string Name
{
get => name;
set
{
name = value;
}
}
public string Description { get; set; }
public List<GraphPoint> Table { get; set; }
public Guid Id => throw new NotImplementedException();
public event PropertyChangedEventHandler? PropertyChanged;
public bool Check()
{
throw new NotImplementedException();