mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
21 lines
326 B
Go
21 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
|
|
}
|