mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 09:15:35 +03:00
Transfer repository from Gitlab
This commit is contained in:
9
server/src/api-v1/auth/dto/jwt-payload.dto.ts
Normal file
9
server/src/api-v1/auth/dto/jwt-payload.dto.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export class JwtPayloadDto {
|
||||
constructor(userId: string, email: string) {
|
||||
this.userId = userId;
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
userId: string;
|
||||
email: string;
|
||||
}
|
||||
Reference in New Issue
Block a user