docker-ddns-server/dyndns/model/log.go
Benjamin Bärthlein c4809b85b4 initial commit
2020-03-28 17:56:11 +01:00

18 lines
217 B
Go

package model
import (
"time"
"github.com/jinzhu/gorm"
)
type Log struct {
gorm.Model
Status bool
Host Host
HostID uint
SentIP string
CallerIP string
TimeStamp time.Time
UserAgent string
}