File

src/app/models/select-multi-factor-method.model.ts

Index

Properties

Constructor

constructor(method?: string, target?: string)
Parameters :
Name Type Optional
method string yes
target string yes

Properties

method
method: string
Type : string
target
target: string
Type : string
export class SelectedMultiFactorMethod {
  method: string;
  target: string;

  constructor(method?: string, target?: string) {
    this.method = method ? method : null;
    this.target = target ? target : null;
  }
}

results matching ""

    No results matching ""