Add getter to PieceDTO

Quicksave
Justin 2025-06-19 17:41:15 +02:00
parent 326d4ce98c
commit f468f6f285
1 changed files with 11 additions and 0 deletions

View File

@ -11,4 +11,15 @@ public class PieceDTO {
this.unicodeSymbol = unicodeSymbol;
}
public String getType() {
return type;
}
public String getColor() {
return color;
}
public String getUnicodeSymbol() {
return unicodeSymbol;
}
}