using System; using System.Collections.Generic; using System.Linq; using System.Text; using Deltares.Geographic; using Deltares.Standard; namespace Deltares.Dam.Data { public class BackgroundRepositoryFeature : IWKT { public virtual string Feature { get; set; } public string WKT { get { return this.Feature; } } } }