using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using IStation.Bimface;
namespace IStation.Model.Bimface
{
///
/// Bimface构件映射
///
public class ComponentMapper
{
///
/// 对象类型
///
public string ObjectType { get; set; }
///
/// 对象标识
///
public long ObjectID { get; set; }
///
/// 构建ID
///
public string ComponentID { get; set; }
///
/// 视角
///
public CameraStatus3d CameraStatus3d { get; set; }
}
}