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