Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/IGetFactorLogic.cs
2025-05-24 20:26:44 +05:00

14 lines
269 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IGetFactorLogic : ILogic
{
double GetFactor();
}
}