11 lines
174 B
TypeScript
11 lines
174 B
TypeScript
|
export interface CreateOrUpdateSettingCommand {
|
||
|
topic: string;
|
||
|
key: string;
|
||
|
value: string;
|
||
|
}
|
||
|
|
||
|
export interface DeleteSettingCommand {
|
||
|
topic: string;
|
||
|
key: string;
|
||
|
}
|