File

src/app/core/auth/user-form/user-form-role.model.ts

Implements

SelectOption

Index

Properties

Constructor

constructor(name, description)
Parameters :
Name Optional
name No
description No

Properties

description
Type : string
name
Type : string
scopes_permissions
Type : object
selected
Default value : false
import { SelectOption } from '../../../shared/components/select/select-option.model';

export class UserFormRoleModel implements SelectOption {
  name: string;
  description: string;
  selected = false;
  scopes_permissions: object;

  constructor(name, description) {
    this.name = name;
    this.description = description;
  }
}

result-matching ""

    No results matching ""