1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-20 16:59:17 +08:00

22 lines
437 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;
isDefault: boolean;
2022-08-31 23:16:10 +08:00
}
export interface GroupCreate {
2022-08-31 23:16:10 +08:00
id: number;
name: string;
type: string;
}
export interface GroupUpdate {
id: number;
name: string;
isDefault: boolean;
}
2022-08-31 23:16:10 +08:00
export interface GroupSearch {
type: string;
}
}