Files
ShrlAlgoToolkit/ShrlAlgoToolkit.RevitAddins/RvIndependent/MetroGauges/LandXMLData/Interfaces/IComparableStructure.cs
2025-04-24 20:56:10 +08:00

11 lines
248 B
C#

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