using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class ObjectMapInfoMobileDto
{
///
///
///
public ObjectMapInfoMobileDto() { }
///
///
///
public ObjectMapInfoMobileDto(Model.ObjectMapInfo rhs)
{
this.ID = rhs.ID;
this.ObjectType = rhs.ObjectType;
this.SubType = rhs.SubType;
this.ObjectID = rhs.ObjectID;
this.ObjectName = rhs.ObjectName;
this.Shape = rhs.Shape;
this.Position = rhs.Position;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 对象类型
///
public string ObjectType { get; set; }
///
/// 子类型
///
public string SubType { get; set; }
///
/// 对象标识
///
public long ObjectID { get; set; }
///
/// 对象名称
///
public string ObjectName { get; set; }
///
/// 地图形状
///
public string Shape { get; set; }
///
/// 地图位置
///
public string Position { get; set; }
}
}