15 lines
240 B
TypeScript
15 lines
240 B
TypeScript
export interface Permission {
|
|
id: string;
|
|
name: string;
|
|
description?: string;
|
|
}
|
|
|
|
export interface Role {
|
|
id: string;
|
|
name: string;
|
|
description?: string;
|
|
permissions: Permission[];
|
|
createdAt?: string;
|
|
updatedAt?: string;
|
|
}
|