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