Files
RevitArchive/RevitKits/MetroGauges/LandXMLData/Interfaces/IComparableStructure.cs
2026-02-23 14:58:05 +08:00

11 lines
260 B
C#

namespace ShrlAlgoToolkit.RevitAddins.RvIndependent.MetroGauges.LandXMLData.Interfaces
{
public interface IComparableStructure<T>
{
bool DifferentDescendants(T item);
bool DifferentItem(T item);
bool Equals(T item);
}
}