Files
MathApp/Core/IEquationComponent.cs
T
2026-09-08 15:27:34 -05:00

16 lines
287 B
C#

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