owncast/models/ipAddress.go
Gabe Kangas 19b9a8bdf6
Add support for IP-based bans (#1703)
* Add support for IP-based bans. Closes #1534

* Linter cleanup
2022-03-06 20:34:49 -08:00

10 lines
231 B
Go

package models
import "time"
// IPAddress is a simple representation of an IP address.
type IPAddress struct {
IPAddress string `json:"ipAddress"`
Notes string `json:"notes"`
CreatedAt time.Time `json:"createdAt"`
}