11 lines
130 B
Go
11 lines
130 B
Go
package models
|
|
|
|
type Domain struct {
|
|
ID int
|
|
Group *Group
|
|
Type string
|
|
Domain string
|
|
Enable bool
|
|
Comment string
|
|
}
|