2020-05-28 14:58:25 +00:00
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
import QtQuick 2.8
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
readonly property int chatTypeOneToOne: 1
|
|
|
|
readonly property int chatTypePublic: 2
|
|
|
|
readonly property int chatTypePrivateGroupChat: 3
|
2020-05-28 21:34:04 +00:00
|
|
|
|
|
|
|
readonly property int messageType: 1
|
|
|
|
readonly property int stickerType: 2
|
2020-05-28 14:58:25 +00:00
|
|
|
}
|