13 lines
179 B
TypeScript
13 lines
179 B
TypeScript
|
export interface CreateRoleCommand {
|
||
|
role: string;
|
||
|
}
|
||
|
|
||
|
export interface UpdateRoleCommand {
|
||
|
id: number;
|
||
|
role: string;
|
||
|
}
|
||
|
|
||
|
export interface DeleteRoleCommand {
|
||
|
id: number;
|
||
|
}
|