Files
wg_cpso/CaeGlobals/IContainsEquations.cs
2026-03-25 18:20:24 +08:00

15 lines
262 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaeGlobals
{
public interface IContainsEquations
{
void CheckEquations();
bool TryCheckEquations();
}
}