added Model classes
This commit is contained in:
parent
fd257b335c
commit
6e8e0e0101
14 changed files with 145 additions and 33 deletions
5
backend/api/src/model/Leaderboard.ts
Normal file
5
backend/api/src/model/Leaderboard.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import {LeaderboardEntry} from "./LeaderboardEntry.js";
|
||||
|
||||
export class Leaderboard<T> {
|
||||
content: LeaderboardEntry<T>[];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue