mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-30 03:12:36 -04:00
19 lines
399 B
Go
19 lines
399 B
Go
package nmdata
|
|
|
|
import "net/netip"
|
|
|
|
// NetworkResource is the slim twin of resources/types.NetworkResource.
|
|
type NetworkResource struct {
|
|
ID string
|
|
NetworkID string
|
|
AccountID string
|
|
PublicID string
|
|
Name string
|
|
Description string
|
|
Type string
|
|
Address string // TODO: isn't persisted in the DB
|
|
Domain string
|
|
Prefix netip.Prefix
|
|
Enabled bool
|
|
}
|