11 lines
185 B
C#
11 lines
185 B
C#
|
|
namespace Sai.Toolkit.Core.LandXMLData
|
|||
|
|
{
|
|||
|
|
public interface IComparableStructure<T>
|
|||
|
|
{
|
|||
|
|
bool DifferentDescendants(T item);
|
|||
|
|
|
|||
|
|
bool DifferentItem(T item);
|
|||
|
|
bool Equals(T item);
|
|||
|
|
}
|
|||
|
|
}
|