Files
sablier/app/http/routes/models/dynamic_request.go
Alexis Couvreur c827154506 refactor: instance are in unrecoverable state instead of error
To avoid confusion between error from a call or network.
Instance has an Unrecoverable state instead of Error.
2022-11-02 23:15:06 -04:00

13 lines
172 B
Go

package models
import (
"time"
)
type DynamicRequest struct {
Names []string
DisplayName string
Theme string
SessionDuration time.Duration
}