2020-07-10 22:22:39 +00:00
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
import QtQuick 2.13
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
property string messageId: ""
|
|
|
|
property string author: ""
|
|
|
|
|
|
|
|
function reset(){
|
|
|
|
messageId = "";
|
|
|
|
author = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
function set(_messageId, _author){
|
|
|
|
messageId = _messageId;
|
|
|
|
author = _author;
|
|
|
|
}
|
2022-02-09 09:43:23 +00:00
|
|
|
}
|