preparing to render document

This commit is contained in:
2025-07-16 08:55:08 +02:00
parent b372ae45b3
commit 07ef168226
4 changed files with 83 additions and 17 deletions

View File

@@ -0,0 +1,17 @@
package de.srsoftware.umbrella.core;
import de.srsoftware.umbrella.core.model.Company;
public class Tuple<A,B>{
public final A a;
public final B b;
public Tuple(A a, B b){
this.a = a;
this.b = b;
}
public static <A, B> Tuple<A,B> of(A a, B b) {
return new Tuple<>(a,b);
}
}