Files
SerpentRace/SerpentRace_Backend/src/Application/Deck/commands/DeleteDeckCommand.ts
T
2025-10-24 20:28:45 +02:00

7 lines
110 B
TypeScript

export interface DeleteDeckCommand {
userid: string;
authLevel: number;
id: string;
soft?: boolean;
}