mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-30 11:23:16 -04:00
12 lines
307 B
Go
12 lines
307 B
Go
package nmdata
|
|
|
|
import "time"
|
|
|
|
// AccountSettingsInfo is the slim twin of types.AccountSettingsInfo.
|
|
type AccountSettingsInfo struct {
|
|
PeerLoginExpirationEnabled bool
|
|
PeerLoginExpiration time.Duration
|
|
PeerInactivityExpirationEnabled bool
|
|
PeerInactivityExpiration time.Duration
|
|
}
|