Index: Ringtoets/Common/src/Ringtoets.Common.Data/StructureBase.cs
===================================================================
diff -u -r065af7e201b59ec19a17c42e9d772f5e86b31338 -r0889bad3f2ccb9a46bfdc4c4231a90f7e5d207e7
--- Ringtoets/Common/src/Ringtoets.Common.Data/StructureBase.cs (.../StructureBase.cs) (revision 065af7e201b59ec19a17c42e9d772f5e86b31338)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/StructureBase.cs (.../StructureBase.cs) (revision 0889bad3f2ccb9a46bfdc4c4231a90f7e5d207e7)
@@ -112,23 +112,23 @@
///
/// Gets or sets the name of the structure.
///
- public string Name { get; set; }
+ public string Name { internal get; set; }
///
/// Gets or sets the identifier of the structure.
///
- public string Id { get; set; }
+ public string Id { internal get; set; }
///
/// Gets or sets the location of the structure.
///
- public Point2D Location { get; set; }
+ public Point2D Location { internal get; set; }
///
/// Gets or sets the orientation of the closing structure, relative to north.
/// [degrees]
///
- public double StructureNormalOrientation { get; set; }
+ public double StructureNormalOrientation { internal get; set; }
}
}
}
\ No newline at end of file