Wall.cs 656 B

1234567891011121314151617181920212223242526
  1. /*-------------------------------------------------------------------------
  2. * 功能描述:Wall
  3. * 作者:xulisong
  4. * 创建时间: 2019/6/25 14:55:22
  5. * 版本号:v1.0
  6. * -------------------------------------------------------------------------*/
  7. using JBIM.Common;
  8. using JBIM.Definition;
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Linq;
  12. using System.Text;
  13. using System.Threading.Tasks;
  14. namespace JBIM.Component
  15. {
  16. [TypeDefiniton(TypeDefinition.Wall)]
  17. public class Wall : VisibleComponentObject
  18. {
  19. /// <summary>
  20. /// 墙宽
  21. /// </summary>
  22. public double Width { get; set; }
  23. }
  24. }