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

32 lines
522 B
TypeScript
Raw Normal View History

2025-02-03 18:03:23 +00:00
export interface IRegisterUserResponseDTO {
userId: 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-01 21:48:13 +00:00
email: string;
password: string;
}
2025-02-03 18:03:23 +00:00
export interface ISelectCompanyResponseDTO {
2025-02-01 21:48:13 +00:00
companyId: string;
}
export interface IRegisterUserResponseDTO {
userId: string;
}
export interface ILoginUserResponseDTO {
token: string;
userId: string;
}
export interface ISelectCompanyResponseDTO {
message: string;
}
export interface ILogoutResponseDTO {
message: string;
}