Files
Vendaweb-api/src/Auth/interfaces/jwt-payload.interface.ts
Felipe Batista 47e7f75720 commit
2025-01-27 17:44:27 -03:00

8 lines
151 B
TypeScript

export interface JwtPayload {
username: string;
email: string;
image: string;
sectorId: string;
sectorManagerId: string;
roles: string[];
}