using System; namespace Deltares.Maps { public class NtsFeature : NetTopologySuite.Features.Feature, IFeature { private readonly Guid id; public NtsFeature() { id = Guid.NewGuid(); Attributes = new AttributesDictionary(); } public Guid Id { get { return id; } } public string WktFormat { get { return Geometry.AsText(); } } } }