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
Type : string
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;
  }
}

results matching ""

    No results matching ""