Files
ffsaf-site/src/main/java/fr/titionfire/ffsaf/data/id/RegisterId.java
Thibaut Valentin dedae02676
All checks were successful
Deploy Production Server / if_merged (pull_request) Successful in 10m6s
feat: rework competition perm, naming, competition data
2025-08-17 22:07:12 +02:00

18 lines
322 B
Java

package fr.titionfire.ffsaf.data.id;
import jakarta.persistence.Embeddable;
import lombok.*;
import java.io.Serializable;
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode
@Embeddable
public class RegisterId implements Serializable {
private Long competitionId;
private Long membreId;
}