2023-05-04 18:36:35 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property string createChatInitMessage: ""
|
|
|
|
property var createChatFileUrls: []
|
|
|
|
property string createChatStickerHashId: ""
|
|
|
|
property string createChatStickerPackId: ""
|
|
|
|
property string createChatStickerUrl: ""
|
|
|
|
|
|
|
|
function resetProperties() {
|
2023-09-11 10:01:35 +00:00
|
|
|
root.createChatInitMessage = ""
|
|
|
|
root.createChatFileUrls = []
|
|
|
|
root.createChatStickerHashId = ""
|
|
|
|
root.createChatStickerPackId = ""
|
2023-05-04 18:36:35 +00:00
|
|
|
}
|
|
|
|
}
|