Uecko_ERP/apps/server/src/contexts/auth/presentation/dto/auth.response.dto.ts
2025-02-03 22:54:51 +01:00

16 lines
274 B
TypeScript

export interface IRegisterUserResponseDTO {
user_id: string;
username: string;
email: string;
}
export interface ILoginUserResponseDTO {
access_token: string;
refresh_token: string;
user_id: string;
}
export interface ILogoutResponseDTO {
message: string;
}