Other.cs 668 B

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