15 lines
236 B
QML
15 lines
236 B
QML
|
import QtQuick 2.14
|
||
|
|
||
|
QtObject {
|
||
|
id: chatsModel
|
||
|
property var ensView: QtObject {
|
||
|
function isEnsVerified(author) {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function alias(author) {
|
||
|
return "some alias"
|
||
|
}
|
||
|
}
|