src/app/models/select-multi-factor-method.model.ts
Properties |
constructor(method?: string, target?: string)
|
method |
method:
|
Type : string
|
target |
target:
|
Type : string
|
export class SelectedMultiFactorMethod {
method: string;
target: string;
constructor(method?: string, target?: string) {
this.method = method ? method : null;
this.target = target ? target : null;
}
}