mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00: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;
|
|
}
|