web-service/apps/auth/src/interfaces/auth.interface.ts

5 lines
71 B
TypeScript

export interface LoginRequest {
email: string;
password: string;
}