paper-dynasty-website/types/Player.d.ts
2025-05-07 08:55:10 -05:00

15 lines
231 B
TypeScript

export interface Player {
id: number
name: string
cost: number
image: string
headshot: string
description: string
franchise: string
rarity: {
id: number
name: string
color: string
value: number
}
}