Files

11 lines
210 B
C#
Raw Permalink Normal View History

2024-01-08 09:30:50 +08:00
using System;
using KGdev.BI3D.Revit.Common.Models;
namespace KGdev.BI3D.Revit.Common
{
public interface IElementIdProvider
{
string GetElementId(LinkedElementIdPath elementIdPath);
}
}