11 lines
210 B
C#
11 lines
210 B
C#
|
|
using System;
|
|||
|
|
using KGdev.BI3D.Revit.Common.Models;
|
|||
|
|
|
|||
|
|
namespace KGdev.BI3D.Revit.Common
|
|||
|
|
{
|
|||
|
|
public interface IElementIdProvider
|
|||
|
|
{
|
|||
|
|
string GetElementId(LinkedElementIdPath elementIdPath);
|
|||
|
|
}
|
|||
|
|
}
|