That fuck shit the fascists are using
at master 18 lines 497 B view raw
1/* 2 * Copyright 2023 Signal Messenger, LLC 3 * SPDX-License-Identifier: AGPL-3.0-only 4 */ 5package org.tm.archive.messagerequests 6 7import org.tm.archive.recipients.Recipient 8 9/** 10 * Thread recipient and message request state information necessary to render 11 * a thread header. 12 */ 13data class MessageRequestRecipientInfo( 14 val recipient: Recipient, 15 val groupInfo: GroupInfo = GroupInfo.ZERO, 16 val sharedGroups: List<String> = emptyList(), 17 val messageRequestState: MessageRequestState? = null 18)