Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/CharacteristicPointEntity.cs =================================================================== diff -u -r9e1b97e9540df6cbd635120135c83de0260aa6d1 -r508d720230c5f63bce7f95bddc3b7a04808d267d --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/CharacteristicPointEntity.cs (.../CharacteristicPointEntity.cs) (revision 9e1b97e9540df6cbd635120135c83de0260aa6d1) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/CharacteristicPointEntity.cs (.../CharacteristicPointEntity.cs) (revision 508d720230c5f63bce7f95bddc3b7a04808d267d) @@ -36,9 +36,12 @@ public partial class CharacteristicPointEntity { public long CharacteristicPointEntityId { get; set; } - public short CharacteristicPointType { get; set; } - public long SurfaceLinePointEntityId { get; set; } + public long SurfaceLineEntityId { get; set; } + public short Type { get; set; } + public Nullable X { get; set; } + public Nullable Y { get; set; } + public Nullable Z { get; set; } - public virtual SurfaceLinePointEntity SurfaceLinePointEntity { get; set; } + public virtual SurfaceLineEntity SurfaceLineEntity { get; set; } } }