using Deltares.Geotechnics; using Deltares.Geotechnics.SurfaceLines; namespace Deltares.DeltaModel { /// /// Classes implementing this interface have a property which can be invoked to retrieve it from an instance. /// public interface IHasSchematizedSurfaceLine { /// /// Gets the associated to this instance. /// SurfaceLine2 SchematizedSurfaceLine { get; } } }