package nl.herpiederpiee.appie_scraper; /* generated by chatGPT, since i couldnt find a proper library that works how i want */ public class Pair { public F first; public S second; public Pair(F first, S second) { this.first = first; this.second = second; } public static Pair pair(F first, S second) { return new Pair<>(first, second); } }