Files
FancyBot/src/main/kotlin/cn/rtast/fancybot/entity/bullshit/BullShit.kt
T

8 lines
182 B
Kotlin
Raw Normal View History

2024-09-26 15:26:07 +08:00
package cn.rtast.fancybot.entity.bullshit
data class BullShit(
val after: List<String>,
val before: List<String>,
val bosh: List<String>,
2024-10-31 14:02:04 +08:00
val famous: List<String>,
2024-09-26 15:26:07 +08:00
)