2023-10-25 15:20:02 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
property string name
|
|
|
|
property string description
|
|
|
|
property string banner
|
|
|
|
property string image
|
|
|
|
property string color
|
|
|
|
property int membersCount
|
2023-11-06 19:26:44 +00:00
|
|
|
property int activeMembersCount // -1 when not available. >= 0 otherwise.
|
2024-04-29 12:08:57 +00:00
|
|
|
property bool encrypted
|
|
|
|
property bool joined
|
2023-11-06 19:26:44 +00:00
|
|
|
readonly property bool activeMembersCountAvailable: activeMembersCount >= 0
|
2023-10-25 15:20:02 +00:00
|
|
|
}
|