aboutsummaryrefslogtreecommitdiff
path: root/client/src/View/Income/Init.hs
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/View/Income/Init.hs')
-rw-r--r--client/src/View/Income/Init.hs11
1 files changed, 11 insertions, 0 deletions
diff --git a/client/src/View/Income/Init.hs b/client/src/View/Income/Init.hs
new file mode 100644
index 0000000..4f3ef99
--- /dev/null
+++ b/client/src/View/Income/Init.hs
@@ -0,0 +1,11 @@
+module View.Income.Init
+ ( Init(..)
+ ) where
+
+import Common.Model (Income, Payment, User)
+
+data Init = Init
+ { _init_users :: [User]
+ , _init_incomes :: [Income]
+ , _init_payments :: [Payment]
+ } deriving (Show)