mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-19 10:42:20 +00:00
14 lines
281 B
TypeScript
14 lines
281 B
TypeScript
export interface ZombieSiegeParticipantModel {
|
|
id: string;
|
|
playerId: string;
|
|
zombieSiegeId: string;
|
|
survivedWaves: number;
|
|
playerName: string;
|
|
}
|
|
|
|
export interface CreateZombieSiegeParticipantModel {
|
|
playerId: string;
|
|
zombieSiegeId: string;
|
|
survivedWaves: number;
|
|
}
|