mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
20 lines
326 B
Go
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
|
|
}
|