10 lines
260 B
Go
10 lines
260 B
Go
|
package types
|
||
|
|
||
|
// Domain is a first class object type
|
||
|
type Domain struct {
|
||
|
ID string `json:"id,omitempty"`
|
||
|
Active bool `json:"active,omitempty"`
|
||
|
Description string `json:"description,omitempty"`
|
||
|
Name string `json:"name,omitempty"`
|
||
|
}
|