2020-04-15 15:03:55 +01:00

11 lines
173 B
Go

package objects
type Guild struct {
Id string
Name string
Icon string
Owner bool
OwnerId uint64 `json:"id,string"`
Permissions int
}