Extend Pilot model with personal details and linked user ID fields

This commit is contained in:
Jan Meinl
2026-05-14 14:42:01 +02:00
parent 1928dbe8fb
commit 7104f97b3f
@@ -1,6 +1,13 @@
package dev.coph.flightscore.backend.pilot;
import dev.coph.simpleutilities.ulid.ULID;
public class Pilot {
private String firstName;
private String lastName;
private int number;
private String identifier;
private ULID linkedUserId;
}