package models import "gorm.io/gorm" type GuildPreference struct { gorm.Model ID string AutoVoiceEnabled bool `gorm:"default:false"` AutoVoiceSourceChannelId string AutoVoiceCreatedChannelName string }