Files
SerpentRace/SerpentRace_Backend/src/Application/Deck/queries/GetDecksByPageQuery.ts
T

9 lines
171 B
TypeScript

export interface GetDecksByPageQuery {
from: number;
to: number;
userId: string;
userOrgId?: string;
isAdmin: boolean;
includeDeleted?: boolean;
}