6 lines
89 B
TypeScript
6 lines
89 B
TypeScript
export type Role = {
|
|
id: number,
|
|
display_name: string
|
|
description: string
|
|
}
|
|
|