feat: add EvalFile record to encapsulate sequence and intervals

This commit is contained in:
2025-12-05 22:10:13 +01:00
parent 33c121fa75
commit 30c54bc99b

View File

@@ -0,0 +1,6 @@
package de.th_luebeck.ws25;
import java.util.List;
public record EvalFile(List<Integer> sequence, List<Interval> intervals) {
}