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

15 lines
250 B
TypeScript
Raw Normal View History

2025-02-01 21:48:13 +00:00
export interface IRegisterUserRequestDTO {
username: string;
email: string;
password: string;
}
export interface ILoginUserRequestDTO {
email: string;
password: string;
}
export interface ISelectCompanyRequestDTO {
companyId: string;
}