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