Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/IOneVariableFunction.cs
Иван Ивашкин 88ac95af2f Tree graph commands in process
2024-10-17 13:15:30 +05:00

21 lines
592 B
C#

using StructureHelperCommon.Infrastructures.Enums;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IOneVariableFunction : ICloneable, ISaveable
{
public bool IsUser { get; set; }
public FunctionType Type { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public bool Check();
public double GetByX(double xValue);
}
}