Uecko_ERP/apps/server/src/contexts/auth/presentation/dto/auth.response.dto.ts

16 lines
274 B
TypeScript
Raw Normal View History

2025-02-03 18:03:23 +00:00
export interface IRegisterUserResponseDTO {
2025-02-03 21:54:51 +00:00
user_id: string;
2025-02-01 21:48:13 +00:00
username: string;
email: string;
}
2025-02-03 18:03:23 +00:00
export interface ILoginUserResponseDTO {
2025-02-03 21:54:51 +00:00
access_token: string;
refresh_token: string;
user_id: string;
2025-02-01 21:48:13 +00:00
}
export interface ILogoutResponseDTO {
message: string;
}