using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperCommon.Models.Materials.Libraries { public interface IFiberMaterialEntity : ILibMaterialEntity { /// /// Modulus of elasticity, Pa /// double YoungsModulus { get; set; } } }