Index: Ringtoets/Piping/src/Ringtoets.Piping.Primitives/PipingSoilLayer.cs =================================================================== diff -u -r10779bb6a6db2d00f4627b2bc190e7e35e1fee3e -rb6432b2cbcb2db9bd326d9f006fb2d8b2528d263 --- Ringtoets/Piping/src/Ringtoets.Piping.Primitives/PipingSoilLayer.cs (.../PipingSoilLayer.cs) (revision 10779bb6a6db2d00f4627b2bc190e7e35e1fee3e) +++ Ringtoets/Piping/src/Ringtoets.Piping.Primitives/PipingSoilLayer.cs (.../PipingSoilLayer.cs) (revision b6432b2cbcb2db9bd326d9f006fb2d8b2528d263) @@ -19,13 +19,15 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using Core.Common.Base.Storage; + namespace Ringtoets.Piping.Primitives { /// /// This class represents profiles that were imported from D-Soil Model and will later on be used to create the /// necessary input for executing a piping calculation. /// - public class PipingSoilLayer + public class PipingSoilLayer : IStorable { /// /// Creates a new instance of , where the top is set to . @@ -62,5 +64,7 @@ /// Gets or sets the dry unit weight for the . /// public double? DryUnitWeight { get; set; } + + public long StorageId { get; set; } } } \ No newline at end of file