ff-operation-server/src/command/management/role/roleCommand.ts
Julian Krauser 1d56c7f798 base structure
transfered from ff admin
2025-02-16 10:48:12 +01:00

12 lines
179 B
TypeScript

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