JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "role.ts"

Full Path: /home/markqprx/iniasli.pro/resources/client/auth/role.ts
File size: 291 bytes
MIME-type: text/plain
Charset: utf-8

import {Permission} from './permission';

export interface Role {
  id: number;
  name: string;
  type: 'sitewide' | 'workspace';
  description: string;
  permissions?: Permission[];
  default: boolean;
  guests: boolean;
  internal: boolean;
  created_at?: string;
  updated_at?: string;
}