Files
SerpentRace/SerpentRace_Backend/src/Application/Organization/commands/ProcessOrgAuthCallbackCommand.ts
T

7 lines
144 B
TypeScript

export interface ProcessOrgAuthCallbackCommand {
organizationId: string;
userId: string;
status: 'ok' | 'not_ok';
authToken?: string;
}