From a25b1655bb7cf6eab690e25ea82617bd3eb1e099 Mon Sep 17 00:00:00 2001 From: takke Date: Sun, 11 Feb 2024 10:19:55 +0900 Subject: [PATCH] Add `labels` to `FeedDefsPostView` --- .../work/socialhub/kbsky/model/bsky/feed/FeedDefsPostView.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/commonMain/kotlin/work/socialhub/kbsky/model/bsky/feed/FeedDefsPostView.kt b/core/src/commonMain/kotlin/work/socialhub/kbsky/model/bsky/feed/FeedDefsPostView.kt index e392bd7..fa80760 100644 --- a/core/src/commonMain/kotlin/work/socialhub/kbsky/model/bsky/feed/FeedDefsPostView.kt +++ b/core/src/commonMain/kotlin/work/socialhub/kbsky/model/bsky/feed/FeedDefsPostView.kt @@ -1,6 +1,7 @@ package work.socialhub.kbsky.model.bsky.feed import kotlinx.serialization.Serializable +import work.socialhub.kbsky.model.atproto.label.LabelDefsLabel import work.socialhub.kbsky.model.bsky.actor.ActorDefsProfileViewBasic import work.socialhub.kbsky.model.bsky.embed.EmbedViewUnion import work.socialhub.kbsky.model.share.RecordUnion @@ -17,4 +18,5 @@ class FeedDefsPostView { var likeCount: Int? = null var indexedAt: String? = null var viewer: FeedDefsViewerState? = null + var labels: List? = null }