6 lines
89 B
TypeScript
6 lines
89 B
TypeScript
export type UserGroup = {
|
|
name: string;
|
|
description?: string;
|
|
id: number;
|
|
};
|