1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00
thatmattlove-hyperglass/core/models/device.go
2023-07-24 10:57:09 -04:00

20 lines
326 B
Go

package models
import (
"github.com/google/uuid"
)
type Device struct {
Model
Name string
Description string
Address string
Port uint
Platform string
GroupID uuid.UUID
Group Group
CredentialID uuid.UUID
Credential Credential
ProxyID *uuid.UUID
Proxy *Proxy
}