11 lines
260 B
C#
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);
|
|||
|
|
}
|
|||
|
|
}
|