39 lines
1.0 KiB
Go
39 lines
1.0 KiB
Go
package db
|
|
|
|
type System struct {
|
|
ID string
|
|
|
|
Title string
|
|
Description string
|
|
URL string
|
|
License string
|
|
Bugs string
|
|
Changelog string
|
|
Version string
|
|
Socket bool
|
|
Manifest string
|
|
Download string
|
|
Protected bool
|
|
Exclusive bool
|
|
PersistentStorage bool
|
|
Background string
|
|
PrimaryTokenAttribute string
|
|
Availability int
|
|
Locked bool
|
|
Owned bool
|
|
HasStorage bool
|
|
Esmodules []string
|
|
Scripts []string
|
|
Tags []string
|
|
Compatibility Compatibility
|
|
Relationships Relationships
|
|
DocumentTypes DocumentTypes
|
|
Grid Grid
|
|
Authors []Author
|
|
Media []Media
|
|
Packs []Pack
|
|
Styles []Style
|
|
Languages []Language
|
|
PackFolders []Folder
|
|
}
|