1234567891011121314151617181920212223242526 |
-
- using JBIM.Common;
- using JBIM.Definition;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace JBIM.Component
- {
- [TypeDefiniton(TypeDefinition.Wall)]
- public class Wall : VisibleComponentObject
- {
-
-
-
- public double Width { get; set; }
- }
- }
|