ipAddress.go 231 B

12345678910
  1. package models
  2. import "time"
  3. // IPAddress is a simple representation of an IP address.
  4. type IPAddress struct {
  5. IPAddress string `json:"ipAddress"`
  6. Notes string `json:"notes"`
  7. CreatedAt time.Time `json:"createdAt"`
  8. }