Layer.cs 532 B

123456789101112131415161718192021
  1. /* ==============================================================================
  2. * 功能描述:Layer
  3. * 创 建 者:Garrett
  4. * 创建日期:2019/12/24 11:37:47
  5. * ==============================================================================*/
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace TestCad.Model
  12. {
  13. /// <summary>
  14. /// Layer
  15. /// </summary>
  16. class Layer:CADObject
  17. {
  18. public bool IsOff { get; set; }
  19. }
  20. }