using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 地图信息是否存在 Model
///
public class ObjectMapInfoExist
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 对象类型
///
public string ObjectType { get; set; }
///
/// 对象标识
///
public long ObjectID { get; set; }
///
/// 是否存在
///
public bool IsExist { get; set; }
}
}