Files
auth/src/modules/authentication/queries/validate-authentication.query.ts
2023-01-16 15:03:58 +01:00

10 lines
220 B
TypeScript

export class ValidateAuthenticationQuery {
readonly username: string;
readonly password: string;
constructor(username: string, password: string) {
this.username = username;
this.password = password;
}
}