Files
Shrlalgo.RvKits/ShrlAlgoToolkit.RevitAddins/RvIndependent/MetroGauges/LandXMLData/Interfaces/IComparableStructure.cs

11 lines
248 B
C#
Raw Normal View History

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