in docker_images/csharp/wrapper/src/Models/Twin.cs [86:102]
public bool Equals(Twin other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return
(
Desired == other.Desired ||
Desired != null &&
Desired.Equals(other.Desired)
) &&
(
Reported == other.Reported ||
Reported != null &&
Reported.Equals(other.Reported)
);
}