public bool Equals(BootstrapAction obj)
 {
     if (object.ReferenceEquals(obj, null))
     {
         return(false);
     }
     return(BootstrapAction.Equals(this, obj));
 }
        public static bool Equals(BootstrapAction obj1, BootstrapAction obj2)
        {
            if (object.ReferenceEquals(obj1, null) && object.ReferenceEquals(obj2, null))
            {
                return(true);
            }

            if (object.ReferenceEquals(obj1, null) || object.ReferenceEquals(obj2, null))
            {
                return(false);
            }

            return(obj1.Name == obj2.Name &&
                   obj1.Path == obj2.Path &&
                   EmrWorkflowItemBase.ListsAreEqual(obj1.Args, obj2.Args));
        }
 public static bool operator !=(BootstrapAction obj1, BootstrapAction obj2)
 {
     return(!BootstrapAction.Equals(obj1, obj2));
 }