1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-04 04:54:16 +08:00
2023-10-31 06:14:30 +00:00

20 lines
409 B
Go

import { ReqPage } from '.';
export namespace Command {
export interface CommandInfo {
id: number;
name: string;
groupID: number;
command: string;
}
export interface CommandOperate {
id: number;
name: string;
groupID: number;
command: string;
}
export interface CommandSearch extends ReqPage {
info: string;
}
}