|
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; }
|
|
}
|
|
}
|