Files
ShrlAlgoToolkit/ShrlAlgoToolkit.RevitAddins/RvIndependent/MetroGauges/LandXMLData/Interfaces/IComparableStructure.cs
2025-04-24 20:56:44 +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);
}
}