Files
doneit-web/src/app/services/role-id.service.ts
T
2023-02-17 09:21:07 +01:00

24 lines
373 B
TypeScript

import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class RoleIdService {
constructor() { }
/**
* @description President role id
*/
PV: number = 100000011
/**
* @description Vice president role id
*/
PRES: number = 100000014
/**
* @description Consultant role id
*/
Consultant: number = 99999872
}