ff-admin-server/src/command/user/role/roleCommand.ts
2025-01-05 14:14:00 +01:00

12 lines
179 B
TypeScript

export interface CreateRoleCommand {
role: string;
}
export interface UpdateRoleCommand {
id: number;
role: string;
}
export interface DeleteRoleCommand {
id: number;
}