mirror of
https://gitlab.com/mobicoop/v3/service/auth.git
synced 2026-03-24 12:45:48 +00:00
10 lines
220 B
TypeScript
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;
|
|
}
|
|
}
|