LocChat/server/dto/sign_in.dto.ts
2021-11-22 14:21:53 -07:00

5 lines
64 B
TypeScript

export class SignInDto {
email: string;
password: string;
}