wrapperr/models/users.go

18 lines
514 B
Go
Raw Normal View History

2023-10-29 17:03:55 +00:00
package models
import "time"
type WrapperrUser struct {
FriendlyName string `json:"user_friendly_name"`
User string `json:"user_name"`
UserID int `json:"user_id"`
Email string `json:"user_email"`
Active bool `json:"user_active"`
2023-10-29 17:03:55 +00:00
Wrappings []WrapperrHistoryEntry `json:"wrappings"`
}
type WrapperrHistoryEntry struct {
Date time.Time `json:"entry_date"`
IP string `json:"entry_ip"`
}