6 lines
105 B
TypeScript
6 lines
105 B
TypeScript
export interface Role {
|
|
id: number;
|
|
name: string;
|
|
color?: string;
|
|
description?: string;
|
|
} |