claptrap-go/models/guild_preference.go

12 lines
248 B
Go
Raw Permalink Normal View History

2024-07-08 18:09:43 +02:00
package models
import "gorm.io/gorm"
type GuildPreference struct {
gorm.Model
ID string
AutoVoiceEnabled bool `gorm:"default:false"`
AutoVoiceSourceChannelId string
AutoVoiceCreatedChannelName string
}