PlaguPoster/ratings/source/src/commonMain/kotlin/repos/PollsToMessagesInfoRepo.kt

9 lines
312 B
Kotlin
Raw Normal View History

2022-09-04 07:27:35 +00:00
package dev.inmo.plaguposter.ratings.source.repos
import dev.inmo.micro_utils.repos.KeyValueRepo
import dev.inmo.plaguposter.common.ShortMessageInfo
import dev.inmo.plaguposter.posts.models.PostId
2024-04-24 06:14:33 +00:00
import dev.inmo.tgbotapi.types.PollId
2022-09-04 07:27:35 +00:00
2024-04-24 06:14:33 +00:00
interface PollsToMessagesInfoRepo : KeyValueRepo<PollId, ShortMessageInfo>