public static BlueprintControllerReference Clone(BlueprintControllerReference blueprintControllerReference)
 {
     return
         (blueprintControllerReference != null ?
          new BlueprintControllerReference
     {
         Id = blueprintControllerReference.Id
     }
         : null);
 }
 public static BlueprintControllerReference Clone(this BlueprintControllerReference blueprintControllerReference)
 {
     return(BlueprintScrappinUtil.Clone(blueprintControllerReference));
 }