mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
18 lines
266 B
QML
18 lines
266 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;
|
||
|
}
|
||
|
}
|