Files
immich/server/src/api-v1/auth/dto/jwt-payload.dto.ts

10 lines
168 B
TypeScript
Raw Normal View History

2022-02-03 10:06:44 -06:00
export class JwtPayloadDto {
constructor(userId: string, email: string) {
this.userId = userId;
this.email = email;
}
userId: string;
email: string;
}