using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Cracking
{
///
/// Logic for calculating width of crack
///
public interface ICrackWidthLogic
{
ICrackWidthLogicInputData InputData { get; set; }
///
/// return width of crack in meters
///
double GetCrackWidth();
}
}