2022-03-07 05:34:49 +01:00
|
|
|
package models
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
// IPAddress is a simple representation of an IP address.
|
|
|
|
type IPAddress struct {
|
2023-05-30 19:31:43 +02:00
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
2022-03-07 05:34:49 +01:00
|
|
|
IPAddress string `json:"ipAddress"`
|
|
|
|
Notes string `json:"notes"`
|
|
|
|
}
|