mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
19 lines
267 B
QML
19 lines
267 B
QML
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;
|
|
}
|
|
}
|