Files
Backend/src/main/java/cc.fascinated/common/Tuple.java

19 lines
305 B
Java
Raw Normal View History

2024-04-10 07:43:38 +01:00
package cc.fascinated.common;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter @AllArgsConstructor
public class Tuple<L, R> {
/**
* The left value of the tuple.
*/
private final L left;
/**
* The right value of the tuple.
*/
private final R right;
}