Files
MathApp/Core/IEquationComponent.cs
T
2026-09-08 14:32:17 -05:00

16 lines
315 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Core
{
interface IEquationComponent
{
public ComponentType Type { get; set; }
public string Arg1 { get; set; }
public string Arg2 { get; set; }
public void Operate();
}
}