mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 02:48:21 +00:00
12 lines
190 B
Go
12 lines
190 B
Go
package service
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
"nfsense.net/nfsense/internal/definitions/common"
|
|
)
|
|
|
|
type Reservation struct {
|
|
HardwareAddress common.HardwareAddress
|
|
IPAddress netip.Addr
|
|
}
|