VirtualWall.cs 571 B

12345678910111213141516171819202122
  1. /*-------------------------------------------------------------------------
  2. * 功能描述:VirtualWall
  3. * 作者:xulisong
  4. * 创建时间: 2019/6/25 14:55:40
  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.VirtualWall)]
  17. public class VirtualWall : VisibleComponentObject
  18. {
  19. }
  20. }