using System.Collections.Generic; using GeoAPI.Geometries; namespace Deltares.Maps { public class IntersectionResult { public IFeature Source { get; set; } public IFeature Target { get; set; } public IEnumerable IntersectionPoints { get; set; } } }