using System; using GeoAPI.Geometries; using NetTopologySuite.Features; namespace Deltares.Maps { public interface IFeature { Guid Id { get; } string WktFormat { get; } IGeometry Geometry { get; } IAttributesTable Attributes { get; } } }