1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-02-01 14:38:07 +08:00

16 lines
299 B
Go
Raw Normal View History

2022-08-31 23:16:10 +08:00
export namespace Group {
export interface GroupInfo {
id: number;
name: string;
type: string;
}
export interface GroupOperate {
id: number;
name: string;
type: string;
}
export interface GroupSearch {
type: string;
}
}