2020-03-24 17:31:23 +00:00

13 lines
226 B
Go

package objects
import "github.com/TicketsBot/GoPanel/utils/types"
type Member struct {
User User
Nick string
Roles types.Int64StringSlice `json:"roles,string"`
JoinedAt string
Deaf bool
Mute bool
}