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

11 lines
182 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;
}