using Aspose.Gis.Geometries; namespace Geo.Layers.Join.Models { /// /// Class for storing information added to the layer attributes /// class LayerMainData { public int Id { get; set; } public string? Summary { get; set; } public IGeometry Geometry { get; set; } } }