mirror of
https://github.com/jie65535/JChatGPT.git
synced 2026-09-15 02:56:10 +08:00
10 lines
214 B
Kotlin
10 lines
214 B
Kotlin
package top.jie65535.mirai.conversation
|
|
|
|
import net.mamoe.mirai.message.data.MessageSourceKind
|
|
|
|
internal data class ConversationKey(
|
|
val botId: Long,
|
|
val kind: MessageSourceKind,
|
|
val subjectId: Long,
|
|
)
|