This commit is contained in:
ninemine
2025-07-01 20:34:09 +08:00
parent dbea849f6c
commit bf6b893412
4 changed files with 70 additions and 8 deletions

View File

@@ -30,5 +30,15 @@ namespace Convention.Symbolization.Internal
}
return target;
}
public bool Equals(Structure other)
{
return Name.Equals(other.Name);
}
public override int GetHashCode()
{
return Name.GetHashCode();
}
}
}