123456789101112131415161718192021222324 |
-
- using Autodesk.Revit.DB;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RevitToJBim.Common
- {
- public class RevitIdGenerator
- {
- public static string GetConnectorId(Connector connector)
- {
- return $"{connector.Owner.Id}_C_{connector.Id}";
- }
- }
- }
|