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