mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-20 03:20:24 +00:00
15 lines
421 B
QML
15 lines
421 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.
|
|
property bool encrypted
|
|
property bool joined
|
|
readonly property bool activeMembersCountAvailable: activeMembersCount >= 0
|
|
}
|