Igor Sirotin 52dd0abbce
feature: live status link previews (#12613)
* feat: live received status link previews
* link preview cards: active members count
* update `requestCommunityInfo` to new backend. Add `requiredTimeSinceLastRequest` arg
2023-11-06 19:26:44 +00:00

13 lines
364 B
QML

import QtQuick 2.15
QtObject {
property string name
property string description
property string banner
property string image
property string color
property int membersCount
property int activeMembersCount // -1 when not available. >= 0 otherwise.
readonly property bool activeMembersCountAvailable: activeMembersCount >= 0
}