Files
ShrlAlgoToolkit/Sai.RvKits/RvIndependent/MetroGauges/LandXMLData/Interfaces/IComparableStructure.cs
2024-09-22 11:05:41 +08:00

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);
}
}