agrobot_base/Exemplos/Aspose.GIS-for-.NET-master/Apps/Geo.Layers.Join/Models/LayerApendData.cs

13 lines
307 B
C#

namespace Geo.Layers.Join.Models
{
/// <summary>
/// Class for storing information added to the layer attributes
/// </summary>
class LayerApendData
{
public int Idx { get; set; }
public string? Price { get; set; }
public string? Summary { get; set; }
}
}