using StructureHelperCommon.Models.Calculators; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.NdmCalculations.Cracking { public interface ICrackWidthLogicInputData : IInputData { /// /// strain of rebar, dimensionless /// double RebarStrain { get; set; } /// /// strain of concrete, dimensionless /// double ConcreteStrain { get; set; } /// /// Length between cracks in meters /// double LengthBetweenCracks { get; set; } } }