ff-admin-server/src/command/roleCommand.ts

13 lines
179 B
TypeScript
Raw Normal View History

2024-08-28 20:41:16 +02:00
export interface CreateRoleCommand {
role: string;
}
export interface UpdateRoleCommand {
id: number;
role: string;
}
export interface DeleteRoleCommand {
id: number;
}