Files
gridpilot.gg/core/identity/application/dto/AuthSessionDTO.ts
2025-12-15 13:46:07 +01:00

8 lines
192 B
TypeScript

import type { AuthenticatedUserDTO } from './AuthenticatedUserDTO';
export interface AuthSessionDTO {
user: AuthenticatedUserDTO;
issuedAt: number;
expiresAt: number;
token: string;
}