123456789101112131415161718192021 |
- /* ==============================================================================
- * 功能描述:Layer
- * 创 建 者:Garrett
- * 创建日期:2019/12/24 11:37:47
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace TestCad.Model
- {
- /// <summary>
- /// Layer
- /// </summary>
- class Layer:CADObject
- {
- public bool IsOff { get; set; }
- }
- }
|