Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Forms/PropertyClasses/WaveImpactAsphaltCoverFailureMechanismContextProperties.cs =================================================================== diff -u -r944d2501b3f780d208e00015a1b850afad4c3aa8 -re42e4a7194308cf8d5ac461cc219cb21f699b96e --- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Forms/PropertyClasses/WaveImpactAsphaltCoverFailureMechanismContextProperties.cs (.../WaveImpactAsphaltCoverFailureMechanismContextProperties.cs) (revision 944d2501b3f780d208e00015a1b850afad4c3aa8) +++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Forms/PropertyClasses/WaveImpactAsphaltCoverFailureMechanismContextProperties.cs (.../WaveImpactAsphaltCoverFailureMechanismContextProperties.cs) (revision e42e4a7194308cf8d5ac461cc219cb21f699b96e) @@ -19,11 +19,13 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using Core.Common.Base.Data; using Core.Common.Gui.Attributes; using Core.Common.Gui.PropertyBag; using Core.Common.Utils.Attributes; using Ringtoets.WaveImpactAsphaltCover.Forms.PresentationObjects; using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources; +using RingtoetsRevetmentFormsResources = Ringtoets.Revetment.Forms.Properties.Resources; namespace Ringtoets.WaveImpactAsphaltCover.Forms.PropertyClasses { @@ -59,5 +61,45 @@ } #endregion + + #region Model settings + + [PropertyOrder(3)] + [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_ModelSettings")] + [ResourcesDisplayName(typeof(RingtoetsRevetmentFormsResources), "GeneralWaveConditionsInput_A_DisplayName")] + [ResourcesDescription(typeof(RingtoetsRevetmentFormsResources), "GeneralWaveConditionsInput_A_Description")] + public RoundedDouble A + { + get + { + return data.WrappedData.GeneralInput.A; + } + } + + [PropertyOrder(4)] + [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_ModelSettings")] + [ResourcesDisplayName(typeof(RingtoetsRevetmentFormsResources), "GeneralWaveConditionsInput_B_DisplayName")] + [ResourcesDescription(typeof(RingtoetsRevetmentFormsResources), "GeneralWaveConditionsInput_B_Description")] + public RoundedDouble B + { + get + { + return data.WrappedData.GeneralInput.B; + } + } + + [PropertyOrder(5)] + [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_ModelSettings")] + [ResourcesDisplayName(typeof(RingtoetsRevetmentFormsResources), "GeneralWaveConditionsInput_C_DisplayName")] + [ResourcesDescription(typeof(RingtoetsRevetmentFormsResources), "GeneralWaveConditionsInput_C_Description")] + public RoundedDouble C + { + get + { + return data.WrappedData.GeneralInput.C; + } + } + + #endregion } } \ No newline at end of file