You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 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"`
}