mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 01:11:46 +03:00
10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
export class JwtPayloadDto {
|
|
constructor(userId: string, email: string) {
|
|
this.userId = userId;
|
|
this.email = email;
|
|
}
|
|
|
|
userId: string;
|
|
email: string;
|
|
}
|