mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-01 14:38:07 +08: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;
|
||
|
}
|
||
|
}
|