7 lines
101 B
TypeScript
7 lines
101 B
TypeScript
|
|
export interface Role {
|
||
|
|
id: string;
|
||
|
|
name: string;
|
||
|
|
description: string;
|
||
|
|
is_active: boolean;
|
||
|
|
}
|