5 lines
65 B
TypeScript
5 lines
65 B
TypeScript
|
|
export enum Role {
|
||
|
|
Admin = '1',
|
||
|
|
Responsable = '2',
|
||
|
|
}
|
||
|
|
|