Move models to their own files

This commit is contained in:
miruka
2019-07-04 16:01:44 -04:00
parent 990770dd38
commit fde7f4aee6
21 changed files with 107 additions and 93 deletions

View File

@@ -1,6 +1,7 @@
import QtQuick 2.7
import QtQuick.Controls 2.2
import "Base"
import "Models"
ApplicationWindow {
id: window
@@ -20,13 +21,14 @@ ApplicationWindow {
window.ready = true
}
Python {
id: py
}
Python { id: py }
Models {
id: models
}
Accounts { id: accounts }
Devices { id: devices }
RoomCategories { id: roomCategories }
Rooms { id: rooms }
Timelines { id: timelines }
Users { id: users }
LoadingScreen {
id: loadingScreen