claptrap-go/models/guild_preference.go
2024-07-08 18:09:43 +02:00

12 lines
248 B
Go

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