Uecko_ERP/apps/server/src/contexts/auth/presentation/dto/auth.request.dto.ts
2025-02-01 22:48:13 +01:00

15 lines
250 B
TypeScript

export interface IRegisterUserRequestDTO {
username: string;
email: string;
password: string;
}
export interface ILoginUserRequestDTO {
email: string;
password: string;
}
export interface ISelectCompanyRequestDTO {
companyId: string;
}