feat: update CardModel
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package fr.titionfire.ffsaf.domain.entity;
|
||||
|
||||
import fr.titionfire.ffsaf.data.model.CardModel;
|
||||
import fr.titionfire.ffsaf.data.model.MatchModel;
|
||||
import io.quarkus.runtime.annotations.RegisterForReflection;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@RegisterForReflection
|
||||
public class MatchModelExtend{
|
||||
final MatchModel match;
|
||||
|
||||
public MatchModelExtend(MatchModel match, List<CardModel> c) {
|
||||
this.match = match;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user