mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
12 lines
400 B
TypeScript
12 lines
400 B
TypeScript
import { ActionsPermission } from "./actions.permission";
|
|
import { AgendaPermission } from "./agenda-permission";
|
|
import { ChatPermission } from "./chat-permission";
|
|
import { GabinetePermission } from "./gabinete-permission";
|
|
|
|
export class PermissionList{
|
|
Agenda = new AgendaPermission();
|
|
Gabinete = new GabinetePermission();
|
|
Actions = new ActionsPermission();
|
|
Chat = new ChatPermission();
|
|
}
|