Files
ShrlAlgoToolkit/Sai.RvKits/RvIndependent/MetroGauges/LandXMLData/Interfaces/IComparableStructure.cs

11 lines
185 B
C#
Raw Normal View History

2024-09-22 11:05:41 +08:00
namespace Sai.Toolkit.Core.LandXMLData
{
public interface IComparableStructure<T>
{
bool DifferentDescendants(T item);
bool DifferentItem(T item);
bool Equals(T item);
}
}