mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-27 08:00:58 +00:00
16 lines
299 B
Go
16 lines
299 B
Go
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;
|
|
}
|
|
}
|