portal/model/key.go

18 lines
239 B
Go

package model
import (
"gorm.io/gorm"
"time"
)
type Key struct {
gorm.Model
ID uint `gorm:"primaryKey"`
AccountID uint
Account Account
PublicKey string
PrivateKey string
CreatedAt time.Time
UpdatedAt time.Time
}