mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-25 08:00:56 +00:00
20 lines
401 B
Go
20 lines
401 B
Go
export namespace Group {
|
|
export interface GroupInfo {
|
|
id: number;
|
|
name: string;
|
|
type: string;
|
|
isDefault: boolean;
|
|
isDelete: boolean;
|
|
}
|
|
export interface GroupCreate {
|
|
id: number;
|
|
name: string;
|
|
type: string;
|
|
}
|
|
export interface GroupUpdate {
|
|
id: number;
|
|
name: string;
|
|
isDefault: boolean;
|
|
}
|
|
}
|