public bool Equals()

in docker_images/csharp/wrapper/src/Models/DefinitionsJsontwin.cs [86:102]


        public bool Equals(DefinitionsJsontwin 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)
                );
        }