mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
13 lines
355 B
Go
13 lines
355 B
Go
package model
|
|
|
|
import (
|
|
. "github.com/mickael-kerjean/filestash/server/common"
|
|
)
|
|
|
|
type StepDefinition struct {
|
|
Name string `json:"name"`
|
|
Title string `json:"title"`
|
|
Subtitle string `json:"subtitle"`
|
|
Icon string `json:"icon"`
|
|
Specs map[string]FormElement `json:"specs"`
|
|
}
|