using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace ExportMap.Models
|
{
|
/// <summary>
|
/// SG的空间数据项
|
/// </summary>
|
public class SpatialItem
|
{
|
public SpatialItem() { }
|
|
public Int64 id { set; get; }
|
|
public string Name { set; get; }
|
|
public string RelativePath { set; get; }
|
|
public string LayerName { set; get; }
|
|
public Int64 DataSourceId { set; get; }
|
|
public string Description { set; get; }
|
}
|
}
|