temporal unworkable progress
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package dev.inmo.postssystem.targets.telegram.content.polls.common
|
||||
|
||||
import dev.inmo.postssystem.features.content.common.Content
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
@Serializable
|
||||
data class PollContent(
|
||||
val options: List<String>,
|
||||
val answer: Int?
|
||||
) : Content {
|
||||
init {
|
||||
require(answer == null || answer in options.indices) {
|
||||
"Answer should be in indexes of options ($options), ($answer)"
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1 @@
|
||||
<manifest package="dev.inmo.postssystem.targets.telegram.content.polls.common"/>
|
Reference in New Issue
Block a user