12345678910111213141516171819202122232425262728293031323334353637 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace JBIM.Relationship
- {
- public class OneToManyRel:RelationshipBase
- {
- public OneToManyRel()
- {
- }
- public OneToManyRel(BimId relatingObject)
- {
- RelatingObject = relatingObject;
- }
- public OneToManyRel(BimId relatingObject, List<BimId> relatedObjects)
- {
- RelatingObject = relatingObject;
- RelatedObjects = relatedObjects;
- }
-
-
-
- public List<BimId> RelatedObjects { get; set; }
-
- }
- }
|