feat: Add user relation to black jack game entity

This commit is contained in:
Phan Huy Tran 2025-03-26 13:56:27 +01:00 committed by Jan K9f
commit 85d2b218aa
4 changed files with 10 additions and 6 deletions

View file

@ -0,0 +1,15 @@
package de.szut.casino.blackjack;
import lombok.Getter;
@Getter
public class CardEntity {
private final Suit suit;
private final Rank rank;
public CardEntity(Suit suit, Rank rank) {
this.suit = suit;
this.rank = rank;
}
}