12 lines
248 B
Go
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
|
|
}
|