Files
pocket-id-pocket-id-1/backend/internal/model/app_config.go
2024-08-23 17:04:19 +02:00

17 lines
352 B
Go

package model
type AppConfigVariable struct {
Key string `gorm:"primaryKey;not null"`
Type string
IsPublic bool
IsInternal bool
Value string
}
type AppConfig struct {
AppName AppConfigVariable
BackgroundImageType AppConfigVariable
LogoImageType AppConfigVariable
SessionDuration AppConfigVariable
}