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

7 lines
152 B
C#

namespace StructureHelperCommon.Services
{
public interface IDigitRoundLogic : IMathRoundLogic
{
int DigitQuant { get; set; }
}
}