
com.freya02.botcommands.api.commands.builder.NSFWStrategyBuilder.kt Maven / Gradle / Ivy
package com.freya02.botcommands.api.commands.builder
import com.freya02.botcommands.internal.commands.CommandDSL
import com.freya02.botcommands.internal.commands.NSFWStrategy
@CommandDSL
class NSFWStrategyBuilder internal constructor() {
var allowInGuild: Boolean = false
var allowInDMs: Boolean = false
internal fun build(): NSFWStrategy {
return NSFWStrategy(allowInGuild, allowInDMs)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy