This commit is contained in:
2022-09-09 18:17:02 +06:00
parent 7549286c84
commit 4c9b6e485f
3 changed files with 10 additions and 7 deletions

View File

@@ -21,9 +21,9 @@ import kotlinx.serialization.encoding.Encoder
@Serializable
data class RatingConfig(
val min: Rating?,
val max: Rating?,
val prefer: Prefer,
val min: Rating? = null,
val max: Rating? = null,
val prefer: Prefer = Prefer.Random,
val otherwise: RatingConfig? = null,
val postAge: Seconds? = null
) {