mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-20 16:59:17 +08:00
22 lines
437 B
Go
22 lines
437 B
Go
export namespace Group {
|
|
export interface GroupInfo {
|
|
id: number;
|
|
name: string;
|
|
type: string;
|
|
isDefault: boolean;
|
|
}
|
|
export interface GroupCreate {
|
|
id: number;
|
|
name: string;
|
|
type: string;
|
|
}
|
|
export interface GroupUpdate {
|
|
id: number;
|
|
name: string;
|
|
isDefault: boolean;
|
|
}
|
|
export interface GroupSearch {
|
|
type: string;
|
|
}
|
|
}
|