LimitCarveCalculator Edit Window was changed
This commit is contained in:
@@ -13,5 +13,12 @@ namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public PredicateTypes PredicateType { get; set; }
|
||||
public override bool Equals(object? obj)
|
||||
{
|
||||
if (obj is null) { return false; }
|
||||
var item = obj as PredicateEntry;
|
||||
if (item.PredicateType == PredicateType & item.Name == Name) { return true; }
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user