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