mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-09 23:17:21 +08:00
11 lines
330 B
Go
11 lines
330 B
Go
package model
|
|
|
|
type ScriptLibrary struct {
|
|
BaseModel
|
|
Name string `json:"name" gorm:"not null;"`
|
|
IsInteractive bool `json:"isInteractive"`
|
|
Script string `json:"script" gorm:"not null;"`
|
|
Groups string `json:"groups"`
|
|
IsSystem bool `json:"isSystem"`
|
|
Description string `json:"description"`
|
|
}
|