Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/TrafficLoadDegreeOfConsolidation.cs =================================================================== diff -u -r5467 -r5508 --- DamEngine/trunk/src/Deltares.DamEngine.Data/General/TrafficLoadDegreeOfConsolidation.cs (.../TrafficLoadDegreeOfConsolidation.cs) (revision 5467) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/TrafficLoadDegreeOfConsolidation.cs (.../TrafficLoadDegreeOfConsolidation.cs) (revision 5508) @@ -21,8 +21,18 @@ namespace Deltares.DamEngine.Data.General; +/// +/// The degree of consolidation in the material due to the traffic load. +/// public class TrafficLoadDegreeOfConsolidation { + /// + /// Gets or sets the name of the soil. + /// public string SoilName { get; set; } + + /// + /// Gets or sets the degree of consolidation. + /// public double DegreeOfConsolidation { get; set; } } \ No newline at end of file Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/Dike.cs =================================================================== diff -u -r5467 -r5508 --- DamEngine/trunk/src/Deltares.DamEngine.Data/General/Dike.cs (.../Dike.cs) (revision 5467) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/Dike.cs (.../Dike.cs) (revision 5508) @@ -161,6 +161,9 @@ } } + /// + /// Gets or sets the degree of consolidation per material due to the traffic load. + /// public virtual IList TrafficLoadDegreeOfConsolidations { get; set; } [Browsable(false)] public virtual IList Gauges { get; set; } = new List();