Skip to content

Commit

Permalink
[FE][Feat] : DTO ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
juwon5272 committed Nov 26, 2024
1 parent 3c5359c commit b5c2469
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions frontend/src/api/dto/auth.dto.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
export class LoginResEntity {
token: string | undefined;

userId: string | undefined;
data: {
token: string | undefined;
userId: string | undefined;
} = {
token: undefined,
userId: undefined,
};
}

export class RegisterResEntity {
Expand Down

0 comments on commit b5c2469

Please sign in to comment.