Files
SerpentRace/SerpentRace_Backend/src/Application/Deck/commands/CreateDeckCommand.ts
T

8 lines
123 B
TypeScript

export interface CreateDeckCommand {
name: string;
type: number;
userid: string;
cards: any[];
ctype?: number;
}