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