linstrom/storage/userInfoFields.go

15 lines
345 B
Go
Raw Normal View History

2024-05-31 09:54:39 +00:00
package storage
import (
"time"
"gorm.io/gorm"
)
type UserInfoField struct {
gorm.Model // Can actually just embed this as is here as those are not something directly exposed :3
Name string
Value string
LastUrlCheckDate *time.Time // Used if the value is an url to somewhere. Empty if value is not an url
}