/* ============================================================================== * 功能描述:BlockReference * 创 建 者:Garrett * 创建日期:2019/12/17 15:52:19 * ==============================================================================*/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestCad.Model { /// /// BlockReference /// class BlockReference: CADObject { public XYZ Position { get; set; } public double Rotation { get; set; } } }