Files
StructureHelper/StructureHelperCommon/Services/IMathRoundLogic.cs
2024-06-02 16:56:44 +05:00

7 lines
137 B
C#

namespace StructureHelperCommon.Services
{
public interface IMathRoundLogic
{
double RoundValue(double value);
}
}