mirror of
https://github.com/nikdoof/pocket-id.git
synced 2025-12-14 15:22:18 +00:00
17 lines
352 B
Go
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
|
|
}
|