/ base / ProfileModelData.qml
ProfileModelData.qml
 1  import QtQuick 2.14
 2  
 3  QtObject {
 4      id: profileModel
 5      property var contacts: QtObject {
 6          function isContactBlocked(author) {
 7              return false;
 8          }
 9  
10          function isAdded(author) {
11              return true
12          }
13      }
14  
15      property var profile: QtObject {
16          property string pubKey: "Some author"
17      }
18  
19      function qrCode(author) {
20          return ""
21      }
22  
23      property var ens: ({preferredUserName: "preffered User name"})
24  }