mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
15 lines
424 B
Go
15 lines
424 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type DynamicRequest struct {
|
|
Names []string `form:"names" binding:"required"`
|
|
ShowDetails bool `form:"show_details"`
|
|
DisplayName string `form:"display_name"`
|
|
Theme string `form:"theme"`
|
|
SessionDuration time.Duration `form:"session_duration" binding:"required"`
|
|
RefreshFrequency time.Duration `form:"refresh_frequency"`
|
|
}
|