summaryrefslogtreecommitdiffstats
path: root/internal/models/dns.go
blob: 51d9e50636d29d7d376fb5af4918ffb478a1ac48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package models

type DNSTLDParams struct {
	Term     string
	ShowOnly string
}

type DomainResult struct {
	Domain string   `json:"domain"`
	Status string   `json:"status"`
	Title  string   `json:"title,omitempty"`
	Tech   []string `json:"tech,omitempty"`
}